-
Notifications
You must be signed in to change notification settings - Fork 2
/
H-Calc.cabal
102 lines (99 loc) · 3.48 KB
/
H-Calc.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
name: H-Calc
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/pcarbonn/H-Calc#readme
license: BSD3
license-file: LICENSE
author: Pierre Carbonnelle
maintainer: pierre.Carbonnelle@gmail.com
copyright: 2018 Pierre Carbonnelle
category: Compiler
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
library
hs-source-dirs: src
build-depends: base-noprelude >= 4.7 && < 5
, fmt
, haskus-utils-variant >= 2.4
, hspec ==2.*
, megaparsec
, parser-combinators
, recursion-schemes
, relude
exposed-modules: Interpreter.A_Nucleus
, Interpreter.B_Add
, Interpreter.C_Mul
, Interpreter.Interpreter
, Interpreter.Transfos
other-modules: Prelude
default-language: Haskell2010
default-extensions: ConstraintKinds
, DataKinds
, DeriveFunctor
, FlexibleContexts
, FlexibleInstances
, GADTs
, KindSignatures
, LambdaCase
, MultiParamTypeClasses
, MultiWayIf
, OverloadedStrings
, PatternSynonyms
, ScopedTypeVariables
, TemplateHaskell
, TypeApplications
, TypeOperators
, UndecidableInstances
executable H-Calc
hs-source-dirs: sandbox
main-is: Main.hs
build-depends: base-noprelude >= 4.7 && < 5
, fmt
, haskus-utils-types >= 1.3
, haskus-utils-variant >= 2.4
, hspec ==2.*
, megaparsec
, parser-combinators
, recursion-schemes
, relude
, H-Calc
default-language: Haskell2010
ghc-options: -W
default-extensions: ConstraintKinds
, DataKinds
, DeriveFunctor
, FlexibleContexts
, FlexibleInstances
, GADTs
, KindSignatures
, LambdaCase
, MultiParamTypeClasses
, MultiWayIf
, OverloadedStrings
, PatternSynonyms
, ScopedTypeVariables
, TemplateHaskell
, TypeApplications
, TypeOperators
, UndecidableInstances
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
build-depends: base-noprelude >= 4.7 && < 5
, fmt
, haskus-utils-types >= 1.3
, haskus-utils-variant >= 2.4
, hspec ==2.*
, megaparsec
, parser-combinators
, recursion-schemes
, relude
, H-Calc
default-language: Haskell2010
default-extensions: GADTs
, OverloadedStrings
, TemplateHaskell
build-tool-depends: hspec-discover:hspec-discover == 2.*