-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcidl.cabal
79 lines (73 loc) · 2.65 KB
/
cidl.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
79
name: cidl
version: 0.0.0.1
license: BSD3
license-file: LICENSE
author: Richard Marko
maintainer: srk@48.io
copyright: 2017 Richard Marko
build-type: Simple
cabal-version: >=1.10
category: Embedded
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
support/tower/Types.hs
support/tower/default.conf,
support/tower/Makefile.template,
support/rpc/Base.hs.template,
support/rpc/Makefile
library
exposed-modules: Cidl,
Cidl.Monad,
Cidl.Dict,
Cidl.Dict.AST,
Cidl.Types,
Cidl.Types.AST,
Cidl.Types.Base,
Cidl.Utils,
Cidl.Backend.Cabal,
--Cidl.Backend.Elm,
--Cidl.Backend.Elm.Common,
--Cidl.Backend.Elm.Dict,
--Cidl.Backend.Elm.Type,
Cidl.Backend.Haskell,
Cidl.Backend.Haskell.Dict,
Cidl.Backend.Haskell.Types,
Cidl.Backend.Ivory,
Cidl.Backend.Ivory.Types,
--Cidl.Backend.Rpc,
Cidl.Backend.Tower,
Cidl.Backend.Tower.Dict
other-modules: Paths_cidl
build-depends: base >=4.7 && <5,
base-compat >= 0.6,
hashable,
mainland-pretty,
parsec,
pretty-show,
transformers,
ivory-artifact,
text,
mtl,
filepath,
monadLib,
lens-family,
lens-family-th,
template-haskell,
directory
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
executable cidl
main-is: Main.hs
hs-source-dirs: executables
build-depends: base >= 4.6,
ivory-artifact,
cidl
default-language: Haskell2010
ghc-options: -Wall