-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprolog-interpreter.cabal
More file actions
68 lines (55 loc) · 1.46 KB
/
prolog-interpreter.cabal
File metadata and controls
68 lines (55 loc) · 1.46 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
68
cabal-version: 2.4
-- Initial package description 'prolog-interpreter.cabal' generated by
-- 'cabal init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: prolog-interpreter
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
license:
license-file: LICENSE
author: ukikagi
maintainer: ukikagi@gmail.com
-- copyright:
-- category:
extra-source-files:
CHANGELOG.md
README.md
common shared-properties
build-depends:
, base ^>=4.13.0.0
, containers
, haskeline ^>=0.8.1.1
, parsec
, transformers
, unix
default-language: Haskell2010
ghc-options:
-Wall -Wincomplete-uni-patterns -Wincomplete-record-updates
-Wmissing-import-lists -Wcompat
common test-depends
build-depends: hspec ^>=2.7.4
build-tool-depends: hspec-discover:hspec-discover -any
library
import: shared-properties
-- cabal-fmt: expand src
exposed-modules:
Eval
Parser
Syntax
build-depends:
hs-source-dirs: src
executable prolog-interpreter
import: shared-properties
main-is: Main.hs
build-depends: prolog-interpreter
hs-source-dirs: app
test-suite prolog-interpreter-test
import: shared-properties, test-depends
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
-- cabal-fmt: expand test -Spec
other-modules: ParserSpec
build-depends: prolog-interpreter