-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLabMate.cabal
executable file
·114 lines (106 loc) · 3.62 KB
/
LabMate.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
cabal-version: 2.4
name: LabMate
version: 0.2.0.6
-- A short (one-line) description of the package.
-- synopsis:
-- A longer description of the package.
-- description:
-- A URL where users can report bugs.
-- bug-reports:
-- The license under which the package is released.
-- license:
author: Conor McBride, Georgi Nakov, Fredrik Nordvall Forsberg
maintainer: [email protected]
common haskell
default-extensions: DataKinds,
DeriveTraversable,
FlexibleContexts,
FlexibleInstances,
GADTs,
GeneralizedNewtypeDeriving,
MultiParamTypeClasses,
NamedFieldPuns,
RankNTypes,
RecordWildCards,
ScopedTypeVariables,
StandaloneDeriving,
PolyKinds,
TupleSections,
TypeFamilies,
TypeSynonymInstances,
TypeOperators,
LambdaCase,
PatternSynonyms,
PatternGuards
build-depends: base <5,
containers,
text,
mtl,
newtype,
terminal-size,
directory,
filepath,
optparse-applicative,
mgen > 0.1.0.1
ghc-options: -Wno-noncanonical-monad-instances
-Wno-noncanonical-monoid-instances
library
import: haskell
exposed-modules: BRect,
Bwd,
Hide,
Lex,
Lisp,
Parse,
Parse.Matlab,
Syntax,
Machine,
Machine.Reassemble,
MagicStrings,
Term,
Term.Indexed,
Term.Natty,
Term.Thinning,
Term.Vec,
CoreTT,
NormalForm,
MissingLibrary
hs-source-dirs: src
default-language: Haskell2010
executable labmate
import: haskell
main-is: src/Main.hs
build-depends: LabMate
other-modules: Paths_LabMate
autogen-modules: Paths_LabMate
default-language: Haskell2010
test-suite coreTT
import: haskell
type: exitcode-stdio-1.0
hs-source-dirs: test/
main-is: Test/RunCoreTT.hs
other-modules: Test.CoreTT
build-depends: LabMate
, base <5
, tasty
, tasty-hunit
, tasty-autocollect
build-tool-depends: tasty-autocollect:tasty-autocollect
, LabMate:labmate
ghc-options: -F -pgmF=tasty-autocollect
default-extensions: OverloadedStrings
default-language: Haskell2010
test-suite examples
import: haskell
type: exitcode-stdio-1.0
hs-source-dirs: test/
main-is: Test/RunExamples.hs
build-depends: LabMate
, base <5
, directory
, filepath
, tasty
, tasty-silver
build-tool-depends: LabMate:labmate
default-extensions: OverloadedStrings
default-language: Haskell2010