forked from cse130-sp18/04-nano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhw4-nano.cabal
54 lines (48 loc) · 1.49 KB
/
hw4-nano.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
name: hw4-nano
version: 0.1.0.0
synopsis: Starter code for cse130 homework/04-nano
license: MIT
license-file: LICENSE
author: Ranjit Jhala
maintainer: [email protected]
category: Language
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
Library
ghc-options: -W -threaded
exposed-modules: Language.Nano.Types,
Language.Nano.Eval,
Language.Nano.Parser
Default-Extensions: OverloadedStrings
-- other-extensions:
build-depends: base,
array,
mtl
hs-source-dirs: src
default-language: Haskell2010
build-tools: alex, happy
other-modules: Language.Nano.Lexer
executable nano
build-depends: base,
haskeline,
mtl,
transformers,
hw4-nano
default-language: Haskell2010
main-is: bin/Main.hs
Default-Extensions: OverloadedStrings
test-suite test
default-language: Haskell98
type: exitcode-stdio-1.0
hs-source-dirs: tests
ghc-options: -threaded
Default-Extensions: OverloadedStrings
main-is: Test.hs
build-depends: base,
directory,
filepath,
tasty,
tasty-hunit,
hw4-nano
other-modules: Common