-
Notifications
You must be signed in to change notification settings - Fork 0
/
icfpc2013.cabal
76 lines (68 loc) · 2.64 KB
/
icfpc2013.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
name: icfpc2013
version: 0.1.0.0
cabal-version: >= 1.12
build-type: Simple
executable bvs
hs-source-dirs: bin
default-language: Haskell2010
ghc-options: -Wall -fno-warn-orphans -O2 -optc-O3 -threaded
main-is: Submitter.hs
other-modules:
build-depends: base == 4.6.*
, bytestring == 0.10.*
, unordered-containers == 0.2.*
, vector == 0.10.*
, hashable == 1.2.*
, random == 1.0.*
, parallel == 3.2.*
, http-conduit == 1.9.4.*
, http-types == 0.8.*
, aeson == 0.6.*
, text == 0.11.*
, icfpc2013
executable bvi
hs-source-dirs: bin
default-language: Haskell2010
ghc-options: -Wall -fno-warn-orphans -O2
main-is: Interpreter.hs
other-modules:
build-depends: base == 4.6.*
, bytestring == 0.10.*
, attoparsec == 0.10.4.*
, icfpc2013
executable bvg
hs-source-dirs: bin
default-language: Haskell2010
ghc-options: -Wall -fno-warn-orphans -optc-O3 -O2 -threaded
main-is: Generator.hs
other-modules:
build-depends: base == 4.6.*
, unordered-containers == 0.2.*
, vector == 0.10.*
, hashable == 1.2.*
, random == 1.0.*
, parallel == 3.2.*
, icfpc2013
library
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -fno-warn-orphans -optc-O3 -O2
exposed-modules:
Language.BV.Types
, Language.BV.Eval
, Language.BV.Util
, Language.BV.Parser
, Language.BV.Gen
, Language.BV.Simplifier
, Language.BV.Symbolic.Operations
, Language.BV.Symbolic.SEval
, Language.BV.Symbolic.Types
, Language.BV.Symbolic.Test
build-depends: base == 4.6.*
, bytestring == 0.10.*
, attoparsec == 0.10.4.*
, containers == 0.5.*
, unordered-containers == 0.2.*
, hashable == 1.2.*
, random == 1.0.*
, vector == 0.10.*