-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathe1337.cabal.current
125 lines (121 loc) · 3.64 KB
/
e1337.cabal.current
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
name: e1337
version: 0.1.0.0
synopsis: A Shader-Toy on steroids and a space-sim game, inspired by Strugatski brothers "Noon, XXII cent."
description: Please see the README on GitHub at <https://github.com/madjestic/e1337#readme>
homepage: https://github.com/madjestic/e1337
license: BSD3
license-file: LICENSE
author: madjestic
maintainer: [email protected]
copyright: Vladimir Lopatin
category: Game
build-type: Simple
cabal-version: >=1.10
extra-source-files:
ChangeLog.md
README.md
source-repository head
type: git
location: https://github.com/madjestic/e1337
library
hs-source-dirs:
src
build-depends:
base >=4.7 && <5
, aeson >= 1.3.1.1
, aeson-pretty >= 0.8.8
, bytestring >=0.10.8.2
, OpenGL >=3.0.2.2
, Yampa >=0.13.1
, sdl2 >=2.4.1.0
, text >=1.2.2.2
, linear >=1.20.8
, GLUtil >=0.10.3
, split >=0.2.3.3
, ilist >=0.2.0.0
, containers >=0.6.0.1
, rosezipper >=0.2
, lens >=4.17
, data-lens-template >=2.1.9
, arrow-list >=0.7
, extra >=1.6.15
, vector >= 0.12.0.2
, store >= 0.4.3.2
, blaze-builder >= 0.4.1.0
, directory >= 1.3.3.0
-- , sdl2-image >= 2.0.0
exposed-modules:
Input
, PGeo
, VGeo
, Game
, Rendering
, Descriptor
, Camera
, Project
, Project.Parser
, Keyboard
, Object
, Controllable
, Material
, Solvable
, Utils
other-modules:
Paths_e1337
, LoadShaders
, FromVector
, Mouse
default-language:
Haskell2010
executable e1337
main-is: Main.hs
hs-source-dirs:
app
, src
ghc-options: -threaded -O2
--cpp-options: -DDEBUG
build-depends:
e1337
, base >=4.7 && <5
, aeson >=1.3.1.1
, aeson-pretty >= 0.8.8
, text >=1.2.2.2
, Yampa >=0.13.1
, OpenGL >=3.0.2.2
, filepath >=0.4.14
, bytestring >=0.10.8.2
, sdl2 >=2.4.1.0
, linear >=1.20.8
, GLUtil >=0.10.3
, split >=0.2.3.3
, ilist >=0.2.0.0
, containers >=0.6.0.1
, rosezipper >=0.2
, lens >=4.17
, data-lens-template >=2.1.9
, arrow-list >=0.7
, extra >=1.6.15
, vector >= 0.12.0.2
, store >= 0.4.3.2
other-modules:
Paths_e1337
, Rendering
, LoadShaders
, Project
, Project.Parser
, Object
, Camera
, Controllable
, Descriptor
, FromVector
, Game
, PGeo
, VGeo
, Input
, Keyboard
, Mouse
, Material
, Solvable
, Utils
default-language:
Haskell2010