-
Notifications
You must be signed in to change notification settings - Fork 2
/
jhcr.cabal
36 lines (32 loc) · 1.4 KB
/
jhcr.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
cabal-version: >=1.10
name: jass-hot-code-reload
version: 1.0.0
license: LGPL-3
license-file: LICENSE
author: lep
maintainer: lep.delete@googlemail.com
build-type: Simple
extra-source-files: Readme.md
executable jhcr
main-is: Main.hs
hs-source-dirs: src
other-modules: Data.Composeable, Hot.Ast, Hot.HandleCode, Hot.Init.Auto,
Hot.Init.Rename, Hot.Init.Stubs, Hot.Instruction,
Hot.Instruction.Compiler, Hot.Instruction.Opt.Rewrite,
Hot.Instruction.Opt.Rewrite.SomeRules, Hot.JassHelper,
Hot.Types, Hot.Var, Jass.Ast, Jass.LCA, Jass.Opt.Rewrite,
Jass.Opt.Rewrite.SomeRules, Jass.Parser, Jass.Printer,
Hot.CommonJHash
build-depends: base, file-embed, transformers, filepath, directory,
bytestring, binary, containers, hashable, megaparsec,
optparse-applicative, gitrev, parser-combinators, lca, mtl,
lens, dlist, unordered-containers, vector, utf8-string,
random, Glob
default-language: Haskell2010
executable convert
main-is: convert.hs
hs-source-dirs: src
other-modules: Data.Composeable, Jass.Ast, Jass.Parser, Jass.Printer
build-depends: base, mtl, hashable, binary, megaparsec, parser-combinators,
bytestring, containers
default-language: Haskell2010