-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturtle.cabal
38 lines (35 loc) · 1.1 KB
/
turtle.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
Name: turtle
Version: 0.1
Description: Toy, toy, toy
License: BSD3
License-file: LICENSE
Author: Kwindla Hultman Kramer
Maintainer: [email protected]
Build-Type: Simple
Cabal-Version: >=1.16
Library
Default-language: Haskell2010
Hs-source-dirs: hs-src/lib
Exposed-modules: TurtlePrimitives
Other-modules: Tokenizer, Evaluator, Parser, SymbolTable, ExprTree
Build-Depends: base >= 4 && < 5
, monads-tf
, containers
Executable turtle
Default-language: Haskell2010
Hs-source-dirs: hs-src/cmd-line
Main-is: Main.hs
Build-Depends: base >= 4 && < 5
, monads-tf
, containers
, turtle
Test-suite test
Type: exitcode-stdio-1.0
Default-language: Haskell2010
Hs-source-dirs: tests
Main-is: test.hs
Build-Depends: base >= 4 && < 5
, turtle
, tasty >= 0.8
, tasty-hunit >= 0.8
, MissingH