summaryrefslogtreecommitdiff
path: root/lisphs.cabal
diff options
context:
space:
mode:
authorTom Smeding <tom.smeding@gmail.com>2018-03-26 21:35:24 +0200
committerTom Smeding <tom.smeding@gmail.com>2018-03-26 21:35:24 +0200
commit7b2f8b602e65ed2462b7d2c5a432d102f0ba6705 (patch)
tree28eb5ebe46740213226719c1f69eeff2b54bbac4 /lisphs.cabal
parent0e1f435314b382cb78056f04d0997df43e4f8fcf (diff)
Build with stack
Diffstat (limited to 'lisphs.cabal')
-rw-r--r--lisphs.cabal16
1 files changed, 16 insertions, 0 deletions
diff --git a/lisphs.cabal b/lisphs.cabal
new file mode 100644
index 0000000..89ee3c4
--- /dev/null
+++ b/lisphs.cabal
@@ -0,0 +1,16 @@
+name: lisphs
+version: 0.1.0
+cabal-version: >= 1.10
+build-type: Simple
+license: MIT
+author: Tom Smeding
+maintainer: tom.smeding@gmail.com
+
+executable lisp
+ hs-source-dirs: .
+ main-is: Main.hs
+ default-language: Haskell2010
+ ghc-options: -Wall -O2
+ build-depends: base >= 4 && < 5,
+ containers, mtl, parsec
+ other-modules: AST, Compiler, Intermediate, Optimiser, Parser, VM