This repository has been archived by the owner on Jul 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmissile.cabal
72 lines (67 loc) · 1.9 KB
/
missile.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
cabal-version: 3.0
name: missile
version: 5.0.0
license: AGPL-3.0-or-later
license-file: LICENSE.txt
author: kurnevsky
maintainer: [email protected]
build-type: Simple
common defaults
default-language: Haskell2010
ghc-options: -O2 -Wall
build-depends: base
library missile-field
import: defaults
hs-source-dirs: missile-field/src
exposed-modules: Player
, Field
build-depends: array
, containers
test-suite missile-field-tests
import: defaults
type: exitcode-stdio-1.0
hs-source-dirs: missile-field/tests
main-is: Tests.hs
other-modules: FieldTests
build-depends: split
, HUnit
, test-framework
, test-framework-hunit
, missile-field
executable missile
hs-source-dirs: src
main-is: Main.hs
other-modules: Auxiliary,
Async,
GameTree,
Rendering,
Bot,
Game,
GameSettings,
Cli,
Paths_missile
build-depends: base,
containers,
data-default,
haskell-gi-base,
gi-cairo,
gi-cairo-connector,
gi-cairo-render,
gi-gdk,
gi-gdkpixbuf,
gi-gtk,
gi-gtk-hs,
split,
text,
transformers,
profunctors,
process,
colour,
random,
optparse-applicative,
missile-field
default-extensions: MultiWayIf,
LambdaCase
ghc-options: -Wall
-O2
-threaded