-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmp5-scheme.cabal
24 lines (21 loc) · 965 Bytes
/
mp5-scheme.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
name: mp5-scheme
version: 0.1.0.0
synopsis: Write a Scheme Interpreter
license: NCSA
build-type: Simple
cabal-version: >=1.10
executable main
hs-source-dirs: app
main-is: Main.hs
other-modules: Scheme.Core , Scheme.Eval , Scheme.Parse , Scheme.Runtime
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base , unordered-containers >= 0.2 , parsec , mtl
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
other-modules: Main , Scheme.Core , Scheme.Eval , Scheme.Parse , Scheme.Runtime , Spec , Tests
hs-source-dirs: app , test
main-is: Spec.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N -main-is Spec.main
build-depends: base , unordered-containers >= 0.2 , parsec , mtl
default-language: Haskell2010