-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjcc.cabal
71 lines (69 loc) · 2.1 KB
/
jcc.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
name: jcc
version: 0.1.0.0
-- synopsis:
-- description:
license: GPL-3
license-file: LICENSE
author: Alex Parent
maintainer: alexparent@gmail.com
copyright: © 2015 Alex Parent
category: Language
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable jcc
main-is: Main.hs
ghc-options: -Werror
-Wall
-fwarn-tabs
-fwarn-incomplete-record-updates
-fwarn-monomorphism-restriction
-fwarn-unused-do-bind
-fwarn-implicit-prelude
-O
default-extensions: GeneralizedNewtypeDeriving, FlexibleContexts, GADTs, NoMonomorphismRestriction
hs-source-dirs: src
build-depends: base,
mtl,
parsec,
optparse-applicative,
QuickCheck,
containers,
vector,
diagrams,
diagrams-svg,
diagrams-lib,
SVGFonts
default-language: Haskell2010
Other-Modules: Circuit
CircuitDiagram
CircuitOptimize
GenJanus
ParseJanus
SimplifyJanus
Simulate
test-suite tests
ghc-options: -Wall
default-extensions: OverloadedStrings, GeneralizedNewtypeDeriving
type: exitcode-stdio-1.0
hs-source-dirs: tests, src
main-is: tests.hs
build-depends: base,
HUnit,
QuickCheck,
test-framework,
test-framework-hunit,
test-framework-quickcheck2,
mtl,
parsec,
vector
default-language: Haskell2010
Other-Modules: Circuit
CircuitDiagram
CircuitOptimize
GenJanus
ParseJanus
SimplifyJanus
Simulate
CompileTests
SimulateTests