-
Notifications
You must be signed in to change notification settings - Fork 5
/
HGE2D.cabal
89 lines (81 loc) · 2.72 KB
/
HGE2D.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
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
-- Initial HGE2D.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: HGE2D
version: 0.1.10.2
synopsis: 2D game engine written in Haskell
description: See README and examples/ for further information
license: MIT
license-file: LICENSE
author: Martin Buck <buckmartin@buckmartin.de>
maintainer: Martin Buck <buckmartin@buckmartin.de>
copyright: Martin Buck <buckmartin@buckmartin.de>
homepage: https://github.com/I3ck/HGE2D
bug-reports: https://github.com/I3ck/HGE2D/issues
category: Game
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/I3ck/HGE2D.git
library
exposed-modules:
HGE2D.Shapes
HGE2D.Render
HGE2D.Colors
HGE2D.Datas
HGE2D.Types
HGE2D.Classes
HGE2D.Instances
HGE2D.Engine
HGE2D.GlFunctions
HGE2D.Time
HGE2D.Math
HGE2D.Geometry
HGE2D.Collision
HGE2D.Physical
HGE2D.QuadTree
HGE2D.AABBTree
HGE2D.Settings
-- other-modules:
-- other-extensions:
build-depends:
base >= 4.8.2.0 && < 5.0,
OpenGL >=3.0 && < 3.1,
GLUT >= 2.7 && < 2.8,
time >= 1.5.0.1 && < 1.7,
safe == 0.3.9
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -O2 -W -fwarn-incomplete-patterns -Werror
test-suite test1
type: exitcode-stdio-1.0
default-language: Haskell2010
main-is: Test.hs
build-depends: base >= 4.8.2.0 && < 5.0, HGE2D, hspec, QuickCheck
hs-source-dirs: src/tests
ghc-options: -W -fwarn-incomplete-patterns -Werror
executable example1
default-language: Haskell2010
main-is: Example1.hs
build-depends: base >= 4.8.2.0 && < 5.0, HGE2D
hs-source-dirs: src/examples
ghc-options: -O2 -W -fwarn-incomplete-patterns -Werror
executable example2
default-language: Haskell2010
main-is: Example2.hs
build-depends: base >= 4.8.2.0 && < 5.0, HGE2D
hs-source-dirs: src/examples
ghc-options: -O2 -W -fwarn-incomplete-patterns -Werror
executable example3
default-language: Haskell2010
main-is: Example3.hs
build-depends: base >= 4.8.2.0 && < 5.0, HGE2D
hs-source-dirs: src/examples
ghc-options: -O2 -W -fwarn-incomplete-patterns -Werror
executable example4
default-language: Haskell2010
main-is: Example4.hs
build-depends: base >= 4.8.2.0 && < 5.0, HGE2D
hs-source-dirs: src/examples
ghc-options: -O2 -W -fwarn-incomplete-patterns -Werror