-
Notifications
You must be signed in to change notification settings - Fork 2
/
cha.cabal
64 lines (60 loc) · 1.87 KB
/
cha.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
60
61
62
63
64
name: cha
version: 0.1.0.0
synopsis: Simple project template from stack
description: Please see README.md
homepage: https://github.com/thsutton/cha#readme
license: BSD3
license-file: LICENSE
author: Thomas Sutton
maintainer: me@thomas-sutton.id.au
copyright: Copyright: (c) 2016 Thomas Sutton
category: Web
build-type: Simple
cabal-version: >=1.10
flag coind
description: Include co/inductive types
default: False
library
hs-source-dirs: lib
exposed-modules: Derivation
, Extract
, Goal
, Interp
, Refiner
, Rules
, Rules.Base
, Rules.Ceq
, Rules.Eq
, Rules.General
, Rules.Nat
, Rules.Pi
, Rules.Sigma
, Rules.Uni
, Rules.Unit
, Rules.Utils
, Tactic
, Term
default-language: Haskell2010
default-extensions: CPP
if flag(coind)
cpp-options: -DFLAG_coind
build-depends: base >= 4.7 && < 5
, containers
, mtl
test-suite check-hlint
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: check-hlint.hs
build-depends: base
, hlint
test-suite examples
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Examples.hs
default-extensions: CPP
if flag(coind)
cpp-options: -DFLAG_coind
build-depends: base
, cha