forked from tmoux/nominal-wyvern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnominal-wyvern.cabal
72 lines (65 loc) · 1.77 KB
/
nominal-wyvern.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
cabal-version: 3.0
name: nominal-wyvern
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD-3-Clause
license-file: LICENSE
author: tmoux
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
extra-source-files: ChangeLog.md, README.md
common common-settings
default-language: Haskell2010
ghc-options:
library
import: common-settings
exposed-modules:
Binding,
Parser,
PrettyPrint,
RawSyntax,
Syntax,
TypeUtil,
Typecheck.Exposure,
Typecheck.Lookup,
Typecheck.Subtyping,
Typecheck.Check,
Typecheck.Expansion,
Typecheck,
Separation.Acyclic,
Separation.Base,
Separation.Check
other-extensions: DeriveDataTypeable
build-depends: base
, cmdargs
, parsec
, mtl
, containers
, extra
hs-source-dirs: src
executable nominal-wyvern
import: common-settings
main-is: Main.hs
hs-source-dirs: app
build-depends:
base,
cmdargs,
nominal-wyvern
test-suite nominal-wyvern-test
import: common-settings
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Spec.hs
other-modules: ProgramTests
build-depends:
base
, mtl
, transformers
, tasty
, tasty-hunit
, nominal-wyvern
ghc-options:
-O -threaded -rtsopts -with-rtsopts=-N