forked from noschinl/cyp
-
Notifications
You must be signed in to change notification settings - Fork 3
/
cyp.cabal
51 lines (48 loc) · 1.07 KB
/
cyp.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
name: cyp
version: 0.2.0.0
build-type: Simple
cabal-version: >= 2.0
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -W
exposed-modules:
Test.Info2.Cyp
, Test.Info2.Cyp.Tasty
other-modules:
Test.Info2.Cyp.Env
, Test.Info2.Cyp.Parser
, Test.Info2.Cyp.Term
, Test.Info2.Cyp.Trace
, Test.Info2.Cyp.Types
, Test.Info2.Cyp.Util
build-depends:
base == 4.*
, containers == 0.6.*
, directory == 1.*
, filepath == 1.*
, haskell-src-exts == 1.*
, mtl == 2.*
, parsec == 3.*
, pretty == 1.*
, pretty-show == 1.*
, tagged == 0.8.*
, tasty == 1.*
executable cyp
main-is: Main.hs
default-language: Haskell2010
ghc-options: -W
build-depends:
base ==4.*
, pretty ==1.*
, cyp
test-suite test
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -W
build-depends:
base ==4.*
, tasty ==1.*
, cyp