-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgidl.cabal
78 lines (72 loc) · 2.69 KB
/
gidl.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
67
68
69
70
71
72
73
74
75
76
77
78
name: gidl
version: 0.1.0.0
license: BSD3
license-file: LICENSE
author: Pat Hickey
maintainer: leepike@galois.com
copyright: 2015 Galois Inc
build-type: Simple
cabal-version: >=1.10
data-files: support/elm/Utils.elm.template,
support/elm/elm-package.json.template,
support/elm/Makefile.template,
support/ivory/Unpack.hs.template,
support/ivory/CodeGen.hs.template,
support/ivory/Makefile.template,
support/tower/CodeGen.hs.template,
support/tower/Attr.hs.template,
support/tower/default.conf,
support/tower/Makefile.template,
support/rpc/Base.hs.template,
support/rpc/Makefile
library
exposed-modules: Gidl,
Gidl.Parse,
Gidl.Interface,
Gidl.Interface.AST,
Gidl.Schema,
Gidl.Types,
Gidl.Types.AST,
Gidl.Types.Base,
Gidl.Backend.Cabal,
Gidl.Backend.Elm,
Gidl.Backend.Elm.Common,
Gidl.Backend.Elm.Interface,
Gidl.Backend.Elm.Type,
Gidl.Backend.Haskell,
Gidl.Backend.Haskell.Interface,
Gidl.Backend.Haskell.Test,
Gidl.Backend.Haskell.Types,
Gidl.Backend.Ivory,
Gidl.Backend.Ivory.Schema,
Gidl.Backend.Ivory.Test,
Gidl.Backend.Ivory.Types,
Gidl.Backend.Rpc,
Gidl.Backend.Tower,
Gidl.Backend.Tower.Schema,
Gidl.Backend.Tower.Server
other-modules: Paths_gidl
build-depends: base >=4.7 && <5,
base-compat >= 0.6,
hashable,
mainland-pretty,
parsec,
pretty-show,
transformers,
ivory-artifact,
s-cargot,
text,
mtl,
filepath,
directory
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
executable gidl
main-is: Main.hs
hs-source-dirs: executables
build-depends: base >= 4.6,
ivory-artifact,
gidl
default-language: Haskell2010
ghc-options: -Wall