forked from ucsd-cse130/arith
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy patharith.cabal
53 lines (47 loc) · 1.46 KB
/
arith.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
name: arith
version: 0.1.0.0
synopsis: Simple demo on how to use happy/alex
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.Arith.Types,
Language.Arith.Eval,
Language.Arith.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.Arith.Lexer
executable nano
build-depends: base,
mtl,
transformers,
arith
default-language: Haskell2010
main-is: src/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,
arith
other-modules: Common