-
Notifications
You must be signed in to change notification settings - Fork 0
/
latte.cabal
50 lines (45 loc) · 2.64 KB
/
latte.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 latte.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: latte
version: 0.1.0.0
-- synopsis:
-- description:
-- license:
license-file: LICENSE
author: Adam Boniecki
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Parsing, Parsing.AbsLatte, Semantics, Semantics.TypeCheck, Errors.LatteError, LLVM, LLVM.AST, LLVM.Printer, Semantics.TypeInfo, Compile.CodeGen, Compile.Monad, Utils
other-modules: Parsing.LexLatte, Parsing.ParLatte, Parsing.ErrM, Semantics.TypeError, Semantics.SemanticMonad
build-depends: base >=4.8 && <4.9, array, containers >=0.5 && <0.6, mtl >=2.2 && <2.3, transformers
build-tools: alex, happy
default-language: Haskell2010
executable latc_llvm
main-is: latc_llvm/Main.hs
other-modules: Semantics.SemanticMonad, Semantics.TypeCheck, Errors.LatteError, Compile, Compile.CodeGen, Parsing, Parsing.AbsLatte, Parsing.LexLatte, Parsing.ParLatte, Compile.Monad, LLVM, LLVM.AST, LLVM.Printer, Parsing.ErrM, Semantics.TypeError, Semantics.TypeInfo, Utils
other-extensions: FlexibleInstances, LambdaCase
build-depends: base >=4.8 && <4.9, HUnit >=1.2.5 && <1.7, containers >=0.5 && <0.6, mtl >=2.2 && <2.3 , directory >=1.2 && <1.3, filepath >=1.4 && <1.5, array, transformers, process, latte
hs-source-dirs: src
build-tools: alex, happy
default-language: Haskell2010
executable latc
main-is: latc/Main.hs
other-modules: Semantics.SemanticMonad, Semantics.TypeCheck, Errors.LatteError, Compile, Compile.CodeGen, Parsing, Parsing.AbsLatte, Parsing.LexLatte, Parsing.ParLatte, Compile.Monad, LLVM, LLVM.AST, LLVM.Printer, Parsing.ErrM, Semantics.TypeError, Semantics.TypeInfo, Utils
other-extensions: FlexibleInstances, LambdaCase
build-depends: base >=4.8 && <4.9, HUnit >=1.2.5 && <1.7, containers >=0.5 && <0.6, mtl >=2.2 && <2.3 , directory >=1.2 && <1.3, filepath >=1.4 && <1.5, array, transformers, process, latte
hs-source-dirs: src
build-tools: alex, happy
default-language: Haskell2010
test-suite latte-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: Compile.CompileSpec, LLVM.LLVMSpec, Parsing.ParseSpec, Semantics.TypesSpec
build-depends: base, latte, hspec, filepath
default-language: Haskell2010