-
Notifications
You must be signed in to change notification settings - Fork 2
/
scripter.cabal
59 lines (57 loc) · 1.53 KB
/
scripter.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
-- Initial scripter.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: scripter
version: 0.1.0.0
-- synopsis:
-- description:
license: MIT
-- license-file: LICENSE
author: robin
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
library
hs-source-dirs:
src
ghc-options: -Wall -O0 -Wno-unused-do-bind -Wno-name-shadowing
build-depends: base
, megaparsec
, text
, containers
, mtl
, bound
, deriving-compat
, llvm-hs
, llvm-hs-pure
, llvm-hs-pretty
, bytestring
, pretty-simple
, process
exposed-modules:
Codegen
Core
Emit
Interpreter
Lower
Parser
Rename
Typechecker
Run
Type
other-modules:
executable scripter
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base
, text
, containers
, mtl
, scripter
, optparse-applicative
-- hs-source-dirs:
ghc-options: -Wall -O0
default-language: Haskell2010