-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhamilcar.cabal
40 lines (37 loc) · 1.03 KB
/
hamilcar.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
name: hamilcar
version: 1.0
Build-Type: Simple
cabal-version: >= 1.2
executable hamilcar
main-is: Main.hs
hs-source-dirs: src,
src/Internal
ghc-options: -O2
-- -fllvm
build-depends: base,
bytestring,
array
executable movegenbench
main-is: Main.hs
hs-source-dirs: src/bench,
src,
src/Internal
ghc-options: -O2
-- -fllvm
build-depends: base,
bytestring,
array,
criterion
Test-Suite Test
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: src/test,
src/,
src/Internal
ghc-options: -O2
-- -fllvm
-prof -fprof-auto -rtsopts
build-depends: base,
HUnit,
test-framework,
test-framework-hunit