-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboolc.cabal
More file actions
26 lines (22 loc) · 837 Bytes
/
boolc.cabal
File metadata and controls
26 lines (22 loc) · 837 Bytes
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
-- Initial bool.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: boolc
version: 1.0.0
synopsis: Basic Object-Oriented Language Compiler
license: GPL-3
author: Andrea Corradi
maintainer: andreac@unstable.it
build-type: Simple
cabal-version: >=1.2
executable boolc
build-depends: base >= 4.5, parsec, containers, mtl, transformers,
llvm-base == 3.2.*, filepath
main-is: Main.hs
other-modules: Ast, AstUtils, Parser, Typesystem, LLVM, ToLLVM
hs-source-dirs: src
Test-Suite boolc-test
build-depends: HUnit,test-framework,test-framework-hunit
hs-source-dirs: src,tests
main-is: Test.hs
other-modules TestParser, TestTypechecking
type: exitcode-stdio-1.0