forked from keyz/p423-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
p423-compiler.cabal
42 lines (35 loc) · 1.29 KB
/
p423-compiler.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
40
41
42
Name: p423-compiler
Version: 0.0.1
Synopsis: P423 class compiler framework.
Author: Ryan R. Newton
Maintainer: [email protected]
Category: Language
Build-type: Simple
-- Constraint on the version of Cabal needed to build this package:
Cabal-version: >=1.10
Library
Exposed-modules:
CompilerHs.Compile
FrameworkHs.Helpers
FrameworkHs.Driver
FrameworkHs.Prims
FrameworkHs.Testing
FrameworkHs.SExpReader.LispData
FrameworkHs.SExpReader.Parser
FrameworkHs.ParseL01
FrameworkHs.GenGrammars.L01VerifyScheme
CompilerHs.VerifyScheme
CompilerHs.GenerateX86_64
default-language: Haskell2010
build-depends:
base == 4.*, deepseq == 1.3.*, vector >= 0.10, containers, process, pretty,
symbol, mtl >= 2, parsec >=3, bytestring >= 0.10, blaze-builder
Executable test-p423-compiler
-- Replace the previous line with these two if you like:
-- Test-Suite test-p423-compiler
-- type: exitcode-stdio-1.0
main-is: scripts/LoadAndTest.hs
default-language: Haskell2010
build-depends:
base == 4.*, deepseq == 1.3.*, vector >= 0.10, containers, process, pretty,
symbol, mtl >= 2, parsec >=3, bytestring >= 0.10, blaze-builder