-
Notifications
You must be signed in to change notification settings - Fork 1
/
robdd.cabal
45 lines (41 loc) · 1.41 KB
/
robdd.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
name: robdd
synopsis: Reduced Ordered Binary Decision Diagrams
-- description:
version: 0.1.0
author: Slava Shklyaev <[email protected]>
maintainer: Slava Shklyaev <[email protected]>
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
source-repository head
type: git
location: [email protected]:slava-sh/robdd.git
flag graphviz
description: Include Data.ROBDD.GraphViz
default: True
library
exposed-modules: Data.ROBDD
, Data.ROBDD.Expr
if flag(graphviz)
exposed-modules: Data.ROBDD.GraphViz
other-modules: Data.ROBDD.Internal
, Data.ROBDD.Internal.Expr
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
build-depends: base >= 4 && < 5
, containers
, mtl
if flag(graphviz)
build-depends: dotgen >= 0.4
test-suite Tests
main-is: test.hs
hs-source-dirs: tests, src
type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: base
, containers
, mtl
, tasty >= 0.10
, tasty-hunit >= 0.9