-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlambda.cabal
More file actions
41 lines (38 loc) · 1.26 KB
/
lambda.cabal
File metadata and controls
41 lines (38 loc) · 1.26 KB
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
-- Initial Scheme.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: lambda
version: 0.1.0.0
synopsis: A scheme implementation in Haskell.
description: A poor man's scheme.
license: MIT
license-file: LICENSE
author: tdfirth
maintainer: thomas.d.firth@gmail.com
-- copyright:
category: Language
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable lambda
main-is: Main.hs
other-modules: Lambda.Types
, Lambda.ReadExpression
, Lambda.Primitives
, Lambda.Parse
, Lambda.Utils
-- other-modules:
-- other-extensions:
build-depends: base
, parsec
, mtl
, haskeline
, containers
hs-source-dirs: src
default-language: Haskell2010
test-suite Scheme-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010