forked from GaloisInc/lustre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
language-lustre.cabal
74 lines (62 loc) · 2.47 KB
/
language-lustre.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
name: language-lustre
version: 0.1.0.0
synopsis: Tools for working with the Lustre language.
description: Tools for working with the Lustre language.
license: ISC
license-file: LICENSE
author: Iavor Diatchki
maintainer: [email protected]
category: Development
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
library
exposed-modules: Language.Lustre.AST,
Language.Lustre.Defines,
Language.Lustre.Name,
Language.Lustre.Monad,
Language.Lustre.Error,
Language.Lustre.Panic,
Language.Lustre.Parser.Lexer,
Language.Lustre.Parser,
Language.Lustre.Parser.Monad,
Language.Lustre.Pretty,
Language.Lustre.Core,
Language.Lustre.Utils,
Language.Lustre.ModelState,
Language.Lustre.Driver,
Language.Lustre.Phase,
Language.Lustre.TypeCheck,
Language.Lustre.TypeCheck.Constraint,
Language.Lustre.TypeCheck.Monad,
Language.Lustre.TypeCheck.Prims,
Language.Lustre.TypeCheck.Utils,
Language.Lustre.Transform.OrderDecls,
Language.Lustre.Transform.NoStatic,
Language.Lustre.Transform.NoStruct,
Language.Lustre.Transform.Inline,
Language.Lustre.Transform.ToCore,
Language.Lustre.Semantics.Const,
Language.Lustre.Semantics.Value,
Language.Lustre.Semantics.BuiltIn,
Language.Lustre.Semantics.Core
build-depends: base,
alex-tools >=0.4,
bytestring, text, array, panic, containers,
GraphSCC, pretty, monadLib >= 3.8
build-tools: alex, happy
default-language: Haskell2010
ghc-options: -Wall
executable lustre
hs-source-dirs: exe
main-is: Lustre.hs
other-modules:
Options
build-depends:
base,
containers,
pretty,
simple-get-opt == 0.4.*,
language-lustre
ghc-options: -Wall
default-language: Haskell2010