summaryrefslogtreecommitdiff
path: root/lisphs.cabal
blob: facdcef94f682af3775da6e3b3c8f0a0d48ba4ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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,
                      array >= 0.5.4.0,
                      containers >= 0.6.2.1,
                      filepath >= 1.4.2.1,
                      mtl >= 2.2.2,
                      parsec >= 3.1.14.0,
                      text >= 1.2.4.0
    other-modules:    AST, ASTOptimiser, Compiler, CompilerMacros, DString, Intermediate, Liveness, Optimiser, Parser, Stackify, Util, VM