-
Notifications
You must be signed in to change notification settings - Fork 9
/
cse230-trees.cabal
67 lines (59 loc) · 1.87 KB
/
cse230-trees.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
55
56
57
58
59
60
61
62
63
64
65
66
67
name: cse230-trees
version: 0.1.0.0
synopsis: Starter code
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 -fdefer-typed-holes
exposed-modules: CSE230.Graphics,
CSE230.List,
CSE230.Shapes,
CSE230.Doc,
CSE230.Directory,
Htdp
other-modules: Htdp.Data.Image,
Htdp.Shape,
Htdp.Combinator
Default-Extensions: OverloadedStrings
-- other-extensions:
build-depends: base,
filepath,
directory,
QuickCheck,
diagrams-core,
diagrams-lib,
diagrams-rasterific,
colour
hs-source-dirs: src
default-language: Haskell2010
executable htree
build-depends: base,
filepath,
directory,
QuickCheck,
cse230-trees
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: test
Default-Extensions: OverloadedStrings
main-is: Test.hs
build-depends: base,
filepath,
directory,
QuickCheck,
tasty,
tasty-hunit,
tasty-quickcheck,
process,
cse230-trees
other-modules: Common