-
Notifications
You must be signed in to change notification settings - Fork 6
/
ants-haskell.cabal
39 lines (35 loc) · 1.07 KB
/
ants-haskell.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
Name: ants-haskell
Version: 1.0
Description: Ants template
Author: Your name
Maintainer: your@mail.com
Build-Type: Simple
Cabal-Version: >=1.8
library
exposed-modules: Ants, Bot, Util
hs-source-dirs: bot
ghc-options: -O2
ghc-prof-options: -prof -caf-all -auto-all
build-depends: base >= 4,
containers >= 0.4,
time,
array
executable MyBot
main-is: MyBot.hs
ghc-options: -O2
ghc-prof-options: -prof -caf-all -auto-all
Build-Depends: base >= 4,
ants-haskell
test-suite test-ants
type: exitcode-stdio-1.0
main-is: Test.hs
hs-source-dirs: test .
ghc-options:
build-depends: base >= 4,
QuickCheck >= 2.4,
HUnit >= 1.0,
test-framework >= 0.2,
test-framework-quickcheck2 >= 0.2,
test-framework-hunit >= 0.2,
time,
ants-haskell