-
Notifications
You must be signed in to change notification settings - Fork 0
/
cis194-homeworks.cabal
78 lines (73 loc) · 3 KB
/
cis194-homeworks.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
68
69
70
71
72
73
74
75
76
77
78
-- Initial cis194-homeworks.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: cis194-homeworks
version: 0.1.0.0
synopsis: Worked exercises from the CIS194 Haskell course.
-- description:
homepage: https://www.seas.upenn.edu/~cis194/spring13/lectures.html
license: GPL-3
license-file: LICENSE
author: Martin Vlk
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable cis194-homeworks
main-is: Main.hs
other-modules: HW01.Hanoi HW01.HW1 HW02.LogAnalysis HW02.Log HW03.Golf
HW04.HW4 HW05.ExprT HW05.Parser HW05.Calc HW05.StackVM
HW06.Fibonacci HW07.Buffer HW07.Editor HW07.Sized
HW07.StringBufEditor HW07.StringBuffer HW08.Employee
HW08.Party HW10.AParser HW11.SExpr HW12.Risk
-- other-extensions:
build-depends: base, containers, parsec, mtl, MonadRandom
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -fno-warn-type-defaults -fno-warn-unused-do-bind
-- -rtsopts
test-suite HW07
type: exitcode-stdio-1.0
main-is: MainT.hs
other-modules: HW07.Buffer HW07.Editor HW07.Sized
HW07.StringBufEditor HW07.StringBuffer
x-uses-tf: true
build-depends: base >= 4 && < 5,
HUnit >= 1.2 && < 2,
QuickCheck >= 2.5,
test-framework >= 0.4.1,
test-framework-quickcheck2,
test-framework-hunit,
containers, parsec, mtl
ghc-options: -Wall -fno-warn-type-defaults -fno-warn-unused-do-bind
hs-source-dirs: tests/HW07, src
default-language: Haskell2010
test-suite HW08
type: exitcode-stdio-1.0
main-is: MainT.hs
other-modules: HW08.Employee HW08.Party
x-uses-tf: true
build-depends: base >= 4 && < 5,
HUnit >= 1.2 && < 2,
QuickCheck >= 2.5,
test-framework >= 0.4.1,
test-framework-quickcheck2,
test-framework-hunit, containers
ghc-options: -Wall -fno-warn-type-defaults -fno-warn-unused-do-bind
hs-source-dirs: tests/HW08, src
default-language: Haskell2010
test-suite HW11
type: exitcode-stdio-1.0
main-is: MainT.hs
other-modules: HW11.SExpr
x-uses-tf: true
build-depends: base >= 4 && < 5,
HUnit >= 1.2 && < 2,
QuickCheck >= 2.5,
test-framework >= 0.4.1,
test-framework-quickcheck2,
test-framework-hunit, containers
ghc-options: -Wall -fno-warn-type-defaults -fno-warn-unused-do-bind
hs-source-dirs: tests/HW11, src
default-language: Haskell2010