-
Notifications
You must be signed in to change notification settings - Fork 2
/
plugins-multistage.cabal
76 lines (56 loc) · 1.63 KB
/
plugins-multistage.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
72
73
74
75
name: plugins-multistage
version: 0.6.3
synopsis: Dynamic linking for embedded DSLs with staged compilation
description: Dynamic compilation, linking and loading of functions in
staged languages.
category: System
copyright: Copyright (c) 2012-2014, Anders Persson
author: Anders Persson <[email protected]>
maintainer: Anders Persson <[email protected]>
license: BSD3
license-file: LICENSE
stability: experimental
build-type: Simple
cabal-version: 1.14
tested-with: GHC==7.6
source-repository head
type: git
location: https://github.com/emwap/plugins-multistage
library
default-language: Haskell2010
exposed-modules:
System.Plugins.MultiStage
build-depends: base >= 4 && < 5.9
, ghc
, process
, directory
, template-haskell
, th-desugar
if impl(ghc >= 8.0.0)
build-depends: ghci
hs-source-dirs: src
ghc-options: -fcontext-stack=100
test-suite regression
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: RegressionTests.hs
default-language: Haskell2010
build-depends:
plugins-multistage,
base,
template-haskell,
tasty >= 0.3,
tasty-th >= 0.1,
tasty-quickcheck >= 0.3,
QuickCheck >= 2.5 && < 3.0
-- benchmark needforspeed
-- type: exitcode-stdio-1.0
-- hs-source-dirs: bench
-- main-is: Benchmark.hs
-- default-language: Haskell2010
-- ghc-options: -O2
-- build-depends:
-- plugins-multistage,
-- base,
-- deepseq,
-- criterion