2013-11-14 12:28:05 +00:00
|
|
|
name: hgraph
|
|
|
|
version: 0.0.1
|
2013-12-01 15:37:13 +00:00
|
|
|
cabal-version: >= 1.2
|
2013-11-14 12:28:05 +00:00
|
|
|
build-type: Simple
|
|
|
|
license: AllRightsReserved
|
|
|
|
license-file: ""
|
|
|
|
description:
|
|
|
|
data-dir: ""
|
|
|
|
|
|
|
|
executable hgraph
|
2013-11-29 17:46:49 +00:00
|
|
|
build-depends:
|
|
|
|
QuickCheck -any,
|
|
|
|
bytestring -any,
|
2014-01-12 21:42:20 +00:00
|
|
|
bytestring-lexing -any,
|
2013-11-29 17:46:49 +00:00
|
|
|
deepseq -any,
|
|
|
|
ghc -any,
|
2014-01-12 21:42:20 +00:00
|
|
|
time >=1.2,
|
2013-11-29 17:46:49 +00:00
|
|
|
parallel -any,
|
|
|
|
repa >=3.2,
|
2013-12-01 15:55:32 +00:00
|
|
|
transformers >=0.3.0,
|
2013-12-09 11:01:49 +00:00
|
|
|
vector >=0.7,
|
2013-12-18 10:36:33 +00:00
|
|
|
mtl >=2.1 && <3,
|
2014-01-12 12:33:01 +00:00
|
|
|
containers >=0.5.0 && <0.6,
|
|
|
|
base >=4.6.0 && <4.7
|
2013-11-14 12:28:05 +00:00
|
|
|
main-is: Main.hs
|
|
|
|
buildable: True
|
|
|
|
hs-source-dirs: src
|
2013-12-02 20:47:33 +00:00
|
|
|
other-modules:
|
2013-12-03 10:36:31 +00:00
|
|
|
Util,
|
|
|
|
DCB.DCB,
|
|
|
|
DCB.Structures,
|
|
|
|
DCB.IO
|
2014-03-11 15:49:47 +00:00
|
|
|
if !os(windows) {
|
2014-03-08 23:37:00 +00:00
|
|
|
ghc-options: -Odph -rtsopts -threaded -fno-liberate-case -funfolding-use-threshold1000 -funfolding-keeness-factor1000 -optlo-O3 -fllvm
|
2014-03-11 15:49:47 +00:00
|
|
|
} else {
|
|
|
|
ghc-options: -Odph -rtsopts -threaded -fno-liberate-case -funfolding-use-threshold1000 -funfolding-keeness-factor1000 -optlo-O3
|
2014-03-08 23:37:00 +00:00
|
|
|
}
|
2013-12-01 18:25:06 +00:00
|
|
|
extensions:
|
|
|
|
BangPatterns,
|
|
|
|
DoAndIfThenElse
|
2013-11-14 12:28:05 +00:00
|
|
|
|
|
|
|
test-suite test-hgraph
|
2013-12-18 10:36:33 +00:00
|
|
|
build-depends:
|
2014-01-12 21:42:20 +00:00
|
|
|
QuickCheck -any, bytestring -any, bytestring-lexing -any,
|
|
|
|
deepseq -any, ghc -any, time >=1.2,
|
2014-03-06 16:46:29 +00:00
|
|
|
parallel -any, repa >=3.2,
|
2014-01-12 12:33:01 +00:00
|
|
|
containers >=0.5.0 && <0.6,
|
|
|
|
base >=4.6.0 && <4.7
|
2013-11-14 12:28:05 +00:00
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
main-is: Main.hs
|
|
|
|
buildable: True
|
|
|
|
cpp-options: -DMAIN_FUNCTION=testMain
|
2013-11-14 14:27:42 +00:00
|
|
|
hs-source-dirs: src
|
2013-12-02 20:47:33 +00:00
|
|
|
ghc-options: -threaded -rtsopts -eventlog
|
2013-12-03 10:36:31 +00:00
|
|
|
other-modules:
|
|
|
|
Util,
|
|
|
|
DCB.Structures,
|
|
|
|
DCB.DCB,
|
|
|
|
DCB.IO
|