-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwater-wars.cabal
142 lines (122 loc) · 2.7 KB
/
water-wars.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
cabal-version: 1.12
name: water-wars
version: 0.0.0
synopsis: The core of WaterWars
homepage: https://github.com/FailWhaleBrigade/water-wars#readme
bug-reports: https://github.com/FailWhaleBrigade/water-wars/issues
author: Fendor, VeryMilkyJoe, Power-Fungus
maintainer: Fendor, VeryMilkyJoe, Power-Fungus
license: MIT
build-type: Simple
extra-source-files:
CHANGELOG.md
LICENSE.md
README.md
stack.yaml
source-repository head
type: git
location: https://github.com/FailWhaleBrigade/water-wars
library
exposed-modules:
WaterWars.Core.DefaultGame
WaterWars.Core.Game
WaterWars.Core.Game.Action
WaterWars.Core.Game.Base
WaterWars.Core.Game.Constants
WaterWars.Core.Game.Events
WaterWars.Core.Game.Map
WaterWars.Core.Game.State
WaterWars.Core.Game.Utils
WaterWars.Core.GameNg
WaterWars.Core.Physics
WaterWars.Core.Physics.Collision
WaterWars.Core.Physics.Constants
WaterWars.Core.Physics.Geometry
WaterWars.Core.Physics.Projectiles
WaterWars.Core.Physics.Utils
WaterWars.Core.Terrain.Block
WaterWars.Core.Terrain.Decoration
WaterWars.Core.Terrain.Read
WaterWars.Network.Protocol
other-modules:
Paths_water_wars
hs-source-dirs:
library
default-extensions:
DeriveGeneric
FlexibleContexts
LambdaCase
MonoLocalBinds
NamedFieldPuns
NoImplicitPrelude
OverloadedStrings
RecordWildCards
ScopedTypeVariables
ghc-options:
-Wall
build-depends:
array,
base,
cereal,
effectful-core,
classy-prelude,
extra
default-language: Haskell2010
test-suite water-wars-test-suite
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Paths_water_wars
WaterWars.Core.CollisionTest
WaterWars.Core.GameNgTest
WaterWars.Core.GameUtilsTest
WaterWars.Core.GeometryTest
WaterWars.Core.Terrains
WaterWars.Core.TerrainsUtils
hs-source-dirs:
test-suite
default-extensions:
NamedFieldPuns
NoImplicitPrelude
OverloadedStrings
RecordWildCards
ScopedTypeVariables
ghc-options:
-Wall
-rtsopts
-threaded
-with-rtsopts=-N
build-depends:
HUnit,
array,
base,
classy-prelude,
hspec,
tasty,
tasty-hspec,
tasty-hunit,
water-wars
default-language: Haskell2010
benchmark water-wars-benchmarks
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Paths_water_wars
hs-source-dirs:
benchmark
default-extensions:
NamedFieldPuns
NoImplicitPrelude
OverloadedStrings
RecordWildCards
ScopedTypeVariables
ghc-options:
-Wall
-rtsopts
-threaded
-with-rtsopts=-N
build-depends:
base,
criterion,
water-wars
default-language: Haskell2010