forked from llvm-hs/llvm-hs-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
examples.cabal
54 lines (50 loc) · 1.37 KB
/
examples.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
51
52
53
54
Name: examples
Version: 1.0.0.0
Cabal-version: >=1.8
Tested-with: GHC >= 7.8
Build-type: Simple
Synopsis: Examples using the llvm-hs library
Description: Examples using the llvm-hs library
executable basic
Main-is: Main.hs
hs-source-dirs: basic
build-depends:
base >= 4.7,
mtl >= 2.2,
bytestring >= 0.10,
llvm-hs >= 5.0,
llvm-hs-pure >= 5.0
executable orc
Main-is: Main.hs
hs-source-dirs: orc
build-depends:
base >= 4.7,
mtl >= 2.2,
bytestring >= 0.10,
llvm-hs >= 5.0,
llvm-hs-pure >= 5.0
executable irbuilder
Main-is: Main.hs
hs-source-dirs: irbuilder
build-depends:
base >= 4.7,
mtl >= 2.2,
bytestring >= 0.10,
llvm-hs >= 5.0,
llvm-hs-pure >= 5.0,
text
executable arith
Main-is: Arith.hs
hs-source-dirs: arith
build-depends:
base >= 4.7,
mtl >= 2.2,
bytestring >= 0.10,
containers,
llvm-hs >= 5.1.2,
llvm-hs-pure >= 5.1,
llvm-hs-pretty,
deepseq,
recursion-schemes,
text,
transformers