-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmotor-diagrams.cabal
58 lines (55 loc) · 1.81 KB
/
motor-diagrams.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
name: motor-diagrams
version: 0.4.0
synopsis:
Generate state diagrams from Motor FSM typeclasses
description:
Generate state diagrams from Motor FSM typeclasses.
license: MPL-2.0
license-file: LICENSE
author: Oskar Wickström
maintainer: [email protected]
copyright: Oskar Wickström
category: Control
build-type: Simple
extra-source-files:
CHANGELOG.md
README.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/owickstrom/motor
library
exposed-modules: Motor.FSM.Diagram
Motor.FSM.Diagram.TH
-- other-modules:
-- other-extensions:
build-depends: base >=4.9 && <5
, template-haskell >= 2.11.1.0
, text
, motor >= 0.4.0
, motor-reflection
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
-fno-warn-unticked-promoted-constructors
test-suite spec
type: exitcode-stdio-1.0
other-modules: Motor.FSM.DiagramSpec
-- for example diagram to be generated:
GenerateDiagram
hs-source-dirs: test, diagrams
main-is: Spec.hs
build-depends: base
, text
, hspec
, hspec-discover
, motor
, motor-reflection
, motor-diagrams
build-tools: hspec-discover
ghc-options: -Wall
-fno-warn-orphans
-fno-warn-missing-signatures
-fno-warn-unticked-promoted-constructors
-fno-warn-name-shadowing
default-language: Haskell2010