-
Notifications
You must be signed in to change notification settings - Fork 3
/
Loxomotive.cabal
46 lines (40 loc) · 976 Bytes
/
Loxomotive.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
cabal-version: 2.4
name: Loxomotive
version: 0.1.0.0
author: Alexander Pankoff
license: MIT
extra-source-files:
README.md
CHANGELOG.md
executable loxomotive
main-is: Main.hs
hs-source-dirs:
app
build-depends:
base
,Loxomotive
,cond
,extra
default-language: Haskell2010
library
exposed-modules:
Loxomotive.Environment
Loxomotive.Expr
Loxomotive.Interpreter
Loxomotive.Object
Loxomotive.Parser
Loxomotive.Resolver
Loxomotive.Scanner
Loxomotive.Stmt
Loxomotive.Token
Loxomotive.TokenType
Loxomotive.Util
build-depends: base
,mtl
,cond
,monad-loops
,Stack
,extra
,containers
hs-source-dirs: src
default-language: Haskell2010