-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.yaml
53 lines (48 loc) · 1.21 KB
/
package.yaml
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
name: wam
version: 0.0.1
github: "acharal/wam"
license: GPL
author: "Angelos Charalambidis"
maintainer: "a.charalambidis@di.uoa.gr"
copyright: "2012 Angelos Charalambidis"
extra-source-files:
- README.md
# Metadata used when publishing your package
synopsis: Simple Prolog Compiler to WAM
category: Compilers/Interpreters
# To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file.
description:
A simple Prolog compiler to WAM
dependencies:
- base >= 3 && < 4.11
- array
- transformers
- mtl
- pretty
- parsec
- monad-coroutine
executables:
wam:
main: Main.hs
source-dirs:
- src
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -XMultiParamTypeClasses
- -XFlexibleInstances
- -XFlexibleContexts
- -XUndecidableInstances
- -XDoAndIfThenElse
- -XNoMonomorphismRestriction
tests:
wam-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N