-
Notifications
You must be signed in to change notification settings - Fork 8
/
hypercube.cabal
60 lines (57 loc) · 1.22 KB
/
hypercube.cabal
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
name: hypercube
version: 0.1.0.0
category: Game
homepage: https://github.com/noughtmare/hypercube#readme
author: Jaro Reinders
maintainer: [email protected]
copyright: 2017 Jaro Reinders
license: GPL-3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
README.md
library
hs-source-dirs:
src
ghc-options: -O2 -Wall
build-depends:
base >= 4.7 && < 5
, transformers
, lens
, stm
, OpenGL
, OpenGLRaw
, linear
, vector
, containers
, deepseq
, thyme
, vector-space
, GLFW-b >= 3.3
, bytestring
, GLUtil >= 0.10
, MemoTrie
, file-embed
exposed-modules:
Hypercube.Chunk
Hypercube.Chunk.Faces
Hypercube.Config
Hypercube.Error
Hypercube.Game
Hypercube.Input
Hypercube.Shaders
Hypercube.Types
Hypercube.Util
other-modules:
Paths_hypercube
default-language: Haskell2010
executable hypercube
main-is: Main.hs
hs-source-dirs:
app
ghc-options: -O2 -Wall -threaded -with-rtsopts=-N2 -with-rtsopts=--nonmoving-gc
build-depends:
base >= 4.7 && < 5
, hypercube
default-language: Haskell2010