-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhw.cabal
31 lines (28 loc) · 1.04 KB
/
hw.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
name: project
version: 0.1.0.0
synopsis:
homepage:
author: Mark
maintainer: lemay@bu.edu
category:
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: ICInterpreter, CCompiler, CParser, ASTInterpreter, Ast, ParserMonad, StatefulUnsafeMonad, CompileMonad, TestsProject
ghc-options: -fwarn-incomplete-patterns -fwarn-incomplete-uni-patterns
build-depends: containers, base >= 4.7 && < 5
hs-source-dirs: src, src/ic
default-language: Haskell2010
test-suite test
default-language:
Haskell2010
type:
exitcode-stdio-1.0
hs-source-dirs:
tests, src, src/ic
main-is: Main.hs
other-modules: AstInterperterTests, CompilerTests, FeaturesTests, ParserTests, IcInterpreterTest, IcInterperterExamples, ICInterpreter, CCompiler, CompileMonad, TestsProject, CParser, ASTInterpreter, Ast, ParserMonad, StatefulUnsafeMonad
build-depends:
containers, base >= 4.7 && < 5
, tasty >= 0.11.1, tasty-hunit, tasty-quickcheck
, project