-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathHate.cabal
128 lines (113 loc) · 4.26 KB
/
Hate.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
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
126
name: Hate
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.4.4
synopsis: A small 2D game framework.
description: A small 2D game framework.
stability: experimental
homepage: http://github.com/bananu7/Hate
license: MIT
license-file: LICENSE
author: Bartek Banachewicz
maintainer: [email protected]
category: Graphics
build-type: Simple
cabal-version: >=1.18
library
-- Modules exported by the library.
exposed-modules: Hate
Hate.Graphics
Hate.Graphics.Api.Shapes
Hate.Graphics.Api.Sprite
Hate.Math
Hate.Math.Types
Hate.Common.Scheduler
Hate.Events
Hate.Events.Types
other-modules: Hate.Common
Hate.Common.Types
Hate.Common.Instances
Hate.Math.OpenGL
Hate.Math.Projection
Hate.Math.Transformable.Class
Hate.Math.Util
Hate.Graphics.Shader
Hate.Graphics.Types
Hate.Graphics.Rendering
Hate.Graphics.Backend
Hate.Graphics.Backend.Common.Pipeline
Hate.Graphics.Backend.Common.Pipeline.Util
Hate.Graphics.Backend.Common.Util
Hate.Graphics.Backend.Compat
Hate.Graphics.Backend.Compat.Shaders
Hate.Graphics.Backend.Compat.Types
Hate.Graphics.Backend.Modern
Hate.Graphics.Backend.Modern.Shaders
Hate.Graphics.Backend.Modern.Types
Hate.Util
hs-source-dirs: .,src
-- Modules included in this library but not exported.
-- other-modules:
-- this is in dependencies because it has to be installed
-- before GLUtil installation is attempted.
if impl(ghc < 7.10.1)
build-tools: cpphs
-- Other library packages from which modules are imported.
build-depends: base >= 4.6 && < 5,
GLFW-b >= 1.4.7,
OpenGL >= 3,
OpenGLRaw >= 3,
transformers,
mtl,
vect,
vector,
array,
JuicyPixels,
JuicyPixels-util,
bytestring,
multimap,
stm > 2.4
default-language: Haskell2010
ghc-options: -Wall -ferror-spans
executable sample_shapes
main-is: sample_shapes.hs
hs-source-dirs: samples
build-depends: base >= 4.6 && < 5,
transformers, mtl, vect,
Hate
default-language: Haskell2010
executable sample_scheduler
main-is: sample_scheduler.hs
hs-source-dirs: samples
build-depends: base >= 4.6 && < 5,
transformers, mtl, vect,
Hate,
lens
default-language: Haskell2010
executable sample_sprite
main-is: sample_sprite.hs
hs-source-dirs: samples
other-modules: Vec2Lens
build-depends: base >= 4.6 && < 5,
transformers, mtl, vect,
Hate,
random, lens
default-language: Haskell2010
executable sample_spritesheet
main-is: sample_spritesheet.hs
hs-source-dirs: samples
build-depends: base >= 4.6 && < 5,
transformers, mtl, vect,
Hate,
random, lens
default-language: Haskell2010
executable sample_asteroids
main-is: sample_asteroids.hs
hs-source-dirs: samples
other-modules: Vec2Lens
build-depends: base >= 4.6 && < 5,
transformers, mtl, vect,
Hate,
random, lens
default-language: Haskell2010