-
Notifications
You must be signed in to change notification settings - Fork 8
/
theseus.cabal
59 lines (57 loc) · 955 Bytes
/
theseus.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
cabal-version: 2.2
name:
theseus
version:
0.0.0.1
synopsis:
lang
description:
Theseus, functional language with fully reversible computation
homepage:
https://github.com/chessai/theseus.git
license:
MIT
license-file:
LICENSE
author:
chessai
maintainer:
copyright:
(c) 2018 chessai
category:
Language
build-type:
Simple
extra-source-files:
ChangeLog.md
library
hs-source-dirs:
src
exposed-modules:
Theseus
Theseus.AbstractSyntax
Theseus.Coverage
Theseus.Eval
Theseus.Parse
Theseus.Pretty
Theseus.Repl
Theseus.Semantics
Theseus.Tc
build-depends:
, base >=4.10 && <5
, pretty
, parsec
, transformers
, mtl
, repline
default-language: Haskell2010
ghc-options:
-Wall
-O2
executable thci
main-is: Main.hs
hs-source-dirs: repl
default-language: Haskell2010
build-depends: base, theseus
ghc-options: -Wall -Werror -O2