forked from serokell/foundry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoundry.cabal
More file actions
142 lines (118 loc) · 4.32 KB
/
foundry.cabal
File metadata and controls
142 lines (118 loc) · 4.32 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
cabal-version: 2.2
name: foundry
version: 0.1.0.0
build-type: Simple
library
exposed-modules: Source
Source.Input
Source.Input.KeyCode
Source.Phaser
Source.NewGen
build-depends: base >=4.7
, containers
, dlist
, unordered-containers
, primitive
, hashable
, lens >=4.11
, transformers >=0.4
, gtk3 >=0.13
, cairo >=0.13
, pango >=0.13
, text >=1.2
, streams >=3.2.1
, semigroups >=0.16
, mtl >= 2.2.1
, bifunctors
, inj
, inj-base
, slay-core
, slay-combinators
, slay-cairo
, sdam
, source-plugin
, num-non-negative
hs-source-dirs: src/driver
default-language: Haskell2010
ghc-options: -Wall -O2
ghc-prof-options: -fprof-auto
-auto-all
-caf-all
library source-plugin
exposed-modules: Source.Plugin
Source.Plugin.Precedence
build-depends: base >=4.7,
unordered-containers, text, primitive,
hashable, sdam
hs-source-dirs: src/plugin
default-language: Haskell2010
ghc-options: -Wall -O2
ghc-prof-options: -fprof-auto
-auto-all
-caf-all
library source-language-haskell
exposed-modules: Source.Language.Haskell
build-depends: base >=4.7,
unordered-containers, text, primitive,
sdam, source-plugin
hs-source-dirs: src/lang/haskell
default-language: Haskell2010
ghc-options: -Wall -O2
ghc-prof-options: -fprof-auto
-auto-all
-caf-all
library source-language-morte
exposed-modules: Source.Language.Morte
build-depends: base >=4.7,
unordered-containers, text, primitive,
sdam, source-plugin
hs-source-dirs: src/lang/morte
default-language: Haskell2010
ghc-options: -Wall -O2
ghc-prof-options: -fprof-auto
-auto-all
-caf-all
executable foundry
main-is: Foundry.hs
build-depends: base, unordered-containers, megaparsec,
sdam, source-language-morte, foundry
hs-source-dirs: src/bin
default-language: Haskell2010
ghc-options: -Wall -threaded -O2
ghc-prof-options: -fprof-auto
-rtsopts
-auto-all
-caf-all
executable hask
main-is: Hask.hs
build-depends: base, unordered-containers, megaparsec,
sdam, source-language-haskell, foundry
hs-source-dirs: src/bin
default-language: Haskell2010
ghc-options: -Wall -threaded -O2
ghc-prof-options: -fprof-auto
-rtsopts
-auto-all
-caf-all
executable morte-to-sdam
main-is: MorteToSdam.hs
build-depends: base, text, containers, morte, sdam
hs-source-dirs: src/bin
default-language: Haskell2010
ghc-options: -Wall -threaded -O2
executable haskell-to-sdam
main-is: HaskellToSdam.hs
build-depends: base, text, containers, unordered-containers, containers,
ghc-lib-parser, sdam, source-language-haskell
hs-source-dirs: src/bin
default-language: Haskell2010
ghc-options: -Wall -threaded -O2
executable sdam-to-svg
main-is: SdamToSvg.hs
build-depends: base, megaparsec, cairo, filepath,
slay-core, sdam, foundry,
source-language-haskell,
source-language-morte
hs-source-dirs: src/bin
default-language: Haskell2010
ghc-options: -Wall -threaded -O2