-
Notifications
You must be signed in to change notification settings - Fork 20
/
examples.cabal
66 lines (61 loc) · 1.86 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
55
56
57
58
59
60
61
62
63
64
65
66
name: examples
version: 1.0.0.0
license: MIT
license-file: LICENSE
cabal-version: >=1.8
tested-with: GHC >=7.8
build-type: Simple
maintainer: Stephen Diehl`
category: Compilers
synopsis: Examples for the llvm-hs library
description: Examples using the llvm-hs library
extra-source-files:
README.md
Source-Repository head
type: git
location: [email protected]:llvm-hs/llvm-hs-examples.git
executable basic
main-is: Main.hs
hs-source-dirs: basic
build-depends:
base >=4.7 && <4.14
, bytestring >=0.10 && <0.11
, llvm-hs >=9.0 && <9.1
, llvm-hs-pure >=9.0 && <9.1
, mtl >=2.2.2 && <2.3
executable orc
main-is: Main.hs
hs-source-dirs: orc
build-depends:
base >=4.7 && <4.14
, bytestring >=0.10 && <0.11
, containers >=0.6 && <0.7
, llvm-hs >=9.0 && <9.1
, llvm-hs-pure >=9.0 && <9.1
, mtl >=2.2.2 && <2.3
executable irbuilder
main-is: Main.hs
hs-source-dirs: irbuilder
build-depends:
base >=4.7 && <4.14
, bytestring >=0.10 && <0.11
, llvm-hs >=9.0 && <9.1
, llvm-hs-pretty >=0.9 && <0.10
, llvm-hs-pure >=9.0 && <9.1
, mtl >=2.2.2 && <2.3
, text >=1.2 && <1.3
executable arith
main-is: Arith.hs
hs-source-dirs: arith
build-depends:
base >=4.7 && <4.14
, bytestring >=0.10 && <0.11
, containers >=0.6 && <0.7
, deepseq >=1.4 && <1.5
, llvm-hs >=9.0 && <9.1
, llvm-hs-pretty >=0.9 && <0.10
, llvm-hs-pure >=9.0 && <9.1
, mtl >=2.2.2 && <2.3
, recursion-schemes >=5.1 && <5.2
, text >=1.2 && <1.3
, transformers >=0.5 && <0.6