-
Notifications
You must be signed in to change notification settings - Fork 2
/
wam.cabal
72 lines (67 loc) · 1.73 KB
/
wam.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: 1.12
-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 0fb3a488b1969d8904d4e43980cc236f0e6a6ea327806c092ec867947b411f36
name: wam
version: 0.0.1
synopsis: Simple Prolog Compiler to WAM
description: A simple Prolog compiler to WAM
category: Compilers/Interpreters
homepage: https://github.com/acharal/wam#readme
bug-reports: https://github.com/acharal/wam/issues
author: Angelos Charalambidis
maintainer: a.charalambidis@di.uoa.gr
copyright: 2012 Angelos Charalambidis
license: GPL
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/acharal/wam
executable wam
main-is: Main.hs
other-modules:
Prolog
Prolog.Parser
WAM
WAM.Compile
WAM.Emit
WAM.Instruction
WAM.Runtime
WAM.Runtime.Mem
WAM.Runtime.Stats
WAM.Runtime.Trace
Paths_wam
hs-source-dirs:
src
ghc-options: -threaded -rtsopts -with-rtsopts=-N -XMultiParamTypeClasses -XFlexibleInstances -XFlexibleContexts -XUndecidableInstances -XDoAndIfThenElse -XNoMonomorphismRestriction
build-depends:
array
, base >=3 && <4.11
, monad-coroutine
, mtl
, parsec
, pretty
, transformers
default-language: Haskell2010
test-suite wam-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Paths_wam
hs-source-dirs:
test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
array
, base >=3 && <4.11
, monad-coroutine
, mtl
, parsec
, pretty
, transformers
default-language: Haskell2010