-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblarney-five.cabal
69 lines (63 loc) · 1.46 KB
/
blarney-five.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
cabal-version: 3.0
name: blarney-five
version: 0.1.0.0
flag enable-namer-plugin
description: Enable namer plugin
manual: True
default: False
common blarney-five-common
default-language: GHC2021
default-extensions:
AllowAmbiguousTypes
BlockArguments
DataKinds
DeriveAnyClass
DerivingStrategies
DuplicateRecordFields
MultiWayIf
NoImplicitPrelude
NoStarIsType
OverloadedRecordDot
OverloadedLabels
PartialTypeSignatures
RebindableSyntax
RecordWildCards
RecursiveDo
TypeFamilies
NoFieldSelectors
ghc-options:
-Wno-partial-type-signatures
if flag(enable-namer-plugin)
build-depends:
blarney-plugins-namer
ghc-options:
-fplugin BlarneyPlugins.Namer
build-depends:
base
, blarney
library
import: blarney-five-common
hs-source-dirs: src
exposed-modules: Blarney.Five
other-modules:
Blarney.Five.Util
Blarney.Five.Verify
Blarney.Five.Pipeline
Blarney.Five.Interface
Blarney.Five.RegisterFile
Blarney.Five.BranchPredictor
executable blarney-five-gen
import: blarney-five-common
main-is: Gen.hs
hs-source-dirs: verify
build-depends: blarney-five
executable blarney-five-verify
import: blarney-five-common
main-is: Verify.hs
hs-source-dirs: verify
build-depends: blarney-five
executable blarney-five-verify-unbounded
import: blarney-five-common
main-is: VerifyUnbounded.hs
hs-source-dirs: verify
build-depends: blarney-five