-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathuroboro.cabal
91 lines (82 loc) · 2.19 KB
/
uroboro.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
-- See http://haskell.org/cabal/users-guide/
name: uroboro
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.0.0
synopsis: An Implementation of a Language with Pattern and Copattern Matching
license: MIT
license-file: LICENSE
author: Tobias Weber
-- maintainer:
-- description:
copyright: (c) 2014 Tobias Weber
category: Language
build-type: Simple
extra-source-files: README.md
data-files: samples/prelude.uro
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/tewe/uroboro.git
flag coverage
description: Enable test coverage checking.
default: False
manual: True
flag warnings
description: Enable all warnings.
default: False
manual: True
library
exposed-modules:
Uroboro.Checker
Uroboro.Error
Uroboro.Interpreter
Uroboro.Parser
Uroboro.PrettyPrint
Uroboro.Token
Uroboro.Tree.Common
Uroboro.Tree.External
Uroboro.Tree.Internal
other-modules: Paths_uroboro
-- other-extensions:
build-depends: base >=4.7 && <4.8, parsec >=3.1 && <3.2
hs-source-dirs: src
default-language: Haskell2010
if flag(coverage)
ghc-options:
-fhpc
if flag(warnings)
ghc-options:
-Wall
test-suite tests
type:
exitcode-stdio-1.0
if flag(coverage)
ghc-options:
-fhpc
if flag(warnings)
ghc-options:
-Wall
other-modules:
Paths_uroboro
Uroboro.CheckerSpec
Uroboro.InterpreterSpec
Uroboro.ParserSpec
Utils
hs-source-dirs:
test
main-is:
Spec.hs
build-depends:
base == 4.*
, uroboro
, parsec
, hspec >=1.11 && <1.12
default-language: Haskell2010
executable uroboro
main-is: uroboro.hs
build-depends: base >=4.7 && <4.8, parsec >=3.1 && <3.2, uroboro
hs-source-dirs: executables
default-language: Haskell2010