-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheocia-haskell.cabal
79 lines (72 loc) · 1.67 KB
/
eocia-haskell.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
cabal-version: 3.0
name: eocia-haskell
version: 0.0.0.0
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
common defaults
default-language: GHC2024
default-extensions:
BlockArguments
DeriveAnyClass
common warnings
ghc-options:
-Wall -Wextra -Weverything -Wcompat -Wno-implicit-prelude
-Wno-unsafe -Wno-missing-safe-haskell-mode
-Wno-missing-local-signatures -Wno-missing-import-lists -haddock
-Wno-orphans
library
import: warnings, defaults
ghc-options: -O2
hs-source-dirs: src
exposed-modules:
Core
Core.Gensym
Core.Pretty
Pipeline
Stage.CVar
Stage.LInt
Stage.LVar
Stage.LVarMon
Stage.X86Int
Stage.X86Var
build-depends:
, algebraic-graphs
, base >=4.7 && <5
, hashable
, mtl
, prettyprinter
, text ==2.1.2
, unordered-containers
executable eocia-haskell
import: warnings, defaults
ghc-options: -O2
hs-source-dirs: app
main-is: Main.hs
build-depends:
, base >=4.7 && <5
, eocia-haskell
test-suite eocia-haskell-test
import: warnings, defaults
default-extensions: OverloadedStrings
ghc-options: -O2 -Wno-orphans
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules:
Arbitrary
TestCVar
TestLInt
TestLVar
TestPipeline
TestX86Int
build-depends:
, algebraic-graphs
, base >=4.7 && <5
, eocia-haskell
, mtl
, tasty
, tasty-hunit
, tasty-quickcheck
, text ==2.1.2
, unordered-containers