-
Notifications
You must be signed in to change notification settings - Fork 1
/
hasklog.cabal
44 lines (40 loc) · 945 Bytes
/
hasklog.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
cabal-version: 2.2
name: hasklog
version: 0.0.1
synopsis: A toy Prolog interpreter/compiler written in Haskell
author: Tim Yates
license: NONE
category: Language
common hasklog-common
default-language: Haskell2010
ghc-options: -Wall -Wno-name-shadowing -Wno-orphans
build-depends:
transformers,
parsec >=3,
mtl >=2,
containers,
list-transformer,
base
library
import: hasklog-common
hs-source-dirs: src
exposed-modules:
Hasklog.Compiler
Hasklog.Data
Hasklog.Interpreter
Hasklog.Parser
executable hasklog
import: hasklog-common
main-is: src/Main.hs
build-depends: hasklog
test-suite hasklog-tests
import: hasklog-common
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules:
Hasklog.ParserSpec
Hasklog.InterpreterSpec
build-depends:
hasklog,
hspec