summaryrefslogtreecommitdiff
path: root/bfcomphs.cabal
diff options
context:
space:
mode:
authorTom Smeding <tom.smeding@gmail.com>2018-04-15 00:12:01 +0200
committerTom Smeding <tom.smeding@gmail.com>2018-04-15 00:12:01 +0200
commit873c294497c74e85eae5310cbf19269807c75e6d (patch)
treebc8558a62559b449ff702593cdc40314359ae2db /bfcomphs.cabal
parent6489f93d146d7b6a381fc2815158240d26b5febc (diff)
Build with stack
Diffstat (limited to 'bfcomphs.cabal')
-rw-r--r--bfcomphs.cabal16
1 files changed, 16 insertions, 0 deletions
diff --git a/bfcomphs.cabal b/bfcomphs.cabal
new file mode 100644
index 0000000..9eaf31e
--- /dev/null
+++ b/bfcomphs.cabal
@@ -0,0 +1,16 @@
+name: bfcomphs
+version: 0.1.0
+cabal-version: >= 1.10
+build-type: Simple
+license: MIT
+author: Tom Smeding
+maintainer: tom.smeding@gmail.com
+
+executable bfcomphs
+ hs-source-dirs: .
+ main-is: Main.hs
+ default-language: Haskell2010
+ ghc-options: -Wall -O2
+ build-depends: base >= 4 && < 5,
+ containers, mtl, vector, process
+ other-modules: AST, Compiler, Interpreter, Optimiser, Parser