-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibgccjit.cabal
65 lines (56 loc) · 1.39 KB
/
libgccjit.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
cabal-version: 3.0
name: libgccjit
version: 0.1.1.0
-- synopsis:
-- description:
homepage: https://github.com/spydr06/libgccjit-haskell
license: GPL-3.0-only
license-file: LICENSE
author: Spydr06
maintainer:
-- copyright:
category: Development
build-type: Simple
extra-doc-files: CHANGELOG.md
common warnings
ghc-options: -Wall
library
import: warnings
exposed-modules:
GccJit
GccJit.Foreign
GccJit.Types
GccJit.Utils
extra-libraries: gccjit
build-tool-depends: c2hs:c2hs >= 0.28.8
build-depends: base ^>=4.17.2.0
hs-source-dirs: src
default-language: Haskell2010
includes:
libgccjit.h
executable Tutorial01
main-is: examples/Tutorial01.hs
build-depends:
base ^>=4.17.2.0,
libgccjit
executable Tutorial02
main-is: examples/Tutorial02.hs
build-depends:
base ^>=4.17.2.0,
libgccjit
executable Tutorial03
main-is: examples/Tutorial03.hs
build-depends:
base ^>=4.17.2.0,
libgccjit
executable Tutorial04
main-is: examples/Tutorial04.hs
build-depends:
base ^>=4.17.2.0,
filepath ^>= 1.4.2.2,
libgccjit
executable Tutorial05
main-is: examples/Tutorial05.hs
build-depends:
base ^>=4.17.2.0,
libgccjit