-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnarcotycs.cabal
More file actions
67 lines (54 loc) · 1.79 KB
/
narcotycs.cabal
File metadata and controls
67 lines (54 loc) · 1.79 KB
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
cabal-version: 3.0
name: narcotycs
version: 0.1.0.0
synopsis: Non-Academic ReCOnciliation of TYpes and ContraintS
-- description:
license: WTFPL
license-file: LICENSE
author: Robert Zabel
-- A copyright notice.
-- copyright:
build-type: Simple
-- Extra doc files to be distributed with the package, such as a CHANGELOG or a README.
extra-doc-files: CHANGELOG.md
-- Extra source files to be distributed with the package, such as examples, or a tutorial module.
-- extra-source-files:
common warnings
ghc-options: -Wall
executable nacotic
import: warnings
main-is: Main.hs
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends: base ^>= 4.20.0.0,
lib-nacotic,
mtl,
transformers
hs-source-dirs: app
default-language: GHC2024
library lib-nacotic
import: warnings
exposed-modules: Naive.Checker,
Naive.Constraints,
Naive.Interface,
Naive.Parser
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends: base ^>= 4.20.0.0,
containers,
mtl,
parsec,
transformers
hs-source-dirs: lib
default-language: GHC2024
Test-Suite test-nacotic
type: exitcode-stdio-1.0
other-modules: Parser,
Checker
main-is: Main.hs
hs-source-dirs: test
build-depends: base ^>= 4.20.0.0,
HUnit,
lib-nacotic,
parsec,
default-language: GHC2024