-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgpc.cabal
50 lines (47 loc) · 1.89 KB
/
gpc.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
43
44
45
46
47
48
49
50
-- Initial Gannet-Parallel-C.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: gpcc
version: 0.0.1
synopsis: A front end compiler for the Glasgow Parallel Reduction Machine
-- description:
homepage: https://github.com/RossMeikleham/GPC
license: BSD2
license-file: LICENSE
author: Ross Meikleham
maintainer: [email protected]
-- copyright:
category: Language
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
test-suite gpc-unit-tests
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: src/GPC tests/GPC src tests
build-depends: base >=4.6 && <4.8,
parsec >=3.1 && <3.2,
HUnit,
test-framework >= 0.6,
test-framework-hunit,
Cabal,
wl-pprint,
split,
containers,
mtl,
lens >= 4.5,
errors,
directory >= 1.2.1.0
ghc-options : -Wall -fno-warn-missing-signatures -fhpc -XRankNTypes
default-language: Haskell2010
other-modules: GPC.AST GPC.ParserTests GPC.Lexer GPC.Parser GPC.Tests GPC.CodeGen
GPC.CodeGenTests GPC.TypeTests GPC.TypeScopeChecker GPC.Interpreter
GPC.CompileTests, GPC.Errors
executable gpcc
main-is: Main.hs
-- other-modules:
other-extensions: NoMonomorphismRestriction
build-depends: base >=4.6 && <4.8, parsec >=3.1 && <3.2, wl-pprint, split, containers, mtl,
lens >= 4.5, errors
ghc-options: -Wall -fno-warn-missing-signatures -XRankNTypes
hs-source-dirs: src/GPC src
default-language: Haskell2010