-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlifter.cabal
47 lines (41 loc) · 1.45 KB
/
lifter.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
-- Initial lifter.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: lifter
version: 0.1.0.0
synopsis: An entry for the 2012 ICFP programming contest.
-- description:
license: BSD3
license-file: LICENSE
author: EFPUG members
-- copyright:
-- category:
build-type: Simple
cabal-version: >=1.8
executable lifter
main-is: lifter.hs
other-modules: GameState
build-depends: base ==4.5.*,
containers >= 0.4 && < 1
ghc-options: -W
executable verifier
main-is: verifier.hs
other-modules: GameState
build-depends: base ==4.5.*,
containers >= 0.4 && < 1
ghc-options: -W
executable manual
main-is: manual.hs
other-modules: GameState
build-depends: base ==4.5.*,
containers >= 0.4 && < 1
ghc-options: -W
Test-Suite tests
type: exitcode-stdio-1.0
main-is: test/Main.hs
hs-source-dirs: ".", test
build-depends: QuickCheck >= 2 && <= 3,
base >= 3 && < 5,
containers >= 0.4 && < 1,
test-framework >= 0.5 && < 1,
test-framework-quickcheck2 >= 0.2 && < 1
ghc-options: -W