-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexam.cabal
42 lines (39 loc) · 811 Bytes
/
exam.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
cabal-version: 3.0
name: exam
version: 1.0.0.0
build-type: Simple
common common
default-language: Haskell2010
ghc-options: -Wall
library
import: common
hs-source-dirs: src
build-depends:
base
, megaparsec
, tasty
, tasty-hunit
exposed-modules:
GenServer
KVDB
KVDB_Tests
SPC
APL.AST
APL.Eval
APL.Parser
APL.Parser_Tests
APL.InterpSim
APL.InterpSim_Tests
APL.InterpConcurrent
APL.InterpConcurrent_Tests
APL.InterpPure
APL.InterpPure_Tests
APL.Monad
test-suite exam-test
import: common
type: exitcode-stdio-1.0
main-is: runtests.hs
build-depends:
base
, tasty
, exam