-
Notifications
You must be signed in to change notification settings - Fork 0
/
spl-scheme.cabal
39 lines (36 loc) · 1.22 KB
/
spl-scheme.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
name: spl-scheme
version: 0.1.0.0
synopsis: Mini implementation of Scheme language written in Haskell
homepage: https://github.com/krzemin/spl-scheme
author: Piotr Krzemiński, Błażej Saladra
maintainer: pio.krzeminski@gmail.com
category: Language
build-type: Custom
cabal-version: >=1.8
executable spl-scheme
build-depends:
base >= 4,
parsec >=3.1.3 && <3.2,
containers >=0.5.0 && <0.6,
readline >= 1.0.3,
MissingH
hs-source-dirs: src
ghc-options: -Wall -rtsopts -main-is Main
main-is: Main.hs
other-modules:
Parser,
Eval,
Expr,
Sugar,
Types
test-suite spl-scheme-test
type: exitcode-stdio-1.0
ghc-options: -Wall -rtsopts -main-is MainTestSuite
main-is: MainTestSuite.hs
build-depends: base >= 4,
HTF > 0.9,
parsec >=3.1.3 && <3.2,
containers >=0.5.0 && <0.6,
MissingH
other-modules: Parser, Eval, Expr, Sugar, Types, MainTest
hs-source-dirs: src, test