summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominic Steinitz <dominic@steinitz.org>2018-04-15 10:11:08 +0100
committerDominic Steinitz <dominic@steinitz.org>2018-04-15 10:11:08 +0100
commit8fa52b8faa9c382da2585f3e80f5d7067e1fcee5 (patch)
tree3f66aeb229ac070edea4d8956516393da4d59d36
parent13136e0b018153bf539709f7bdf952760201715b (diff)
Start of tests and examples
-rw-r--r--packages/sundials/hmatrix-sundials.cabal6
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/sundials/hmatrix-sundials.cabal b/packages/sundials/hmatrix-sundials.cabal
index 5aa4373..7bf34fa 100644
--- a/packages/sundials/hmatrix-sundials.cabal
+++ b/packages/sundials/hmatrix-sundials.cabal
@@ -29,13 +29,14 @@ library
29 other-modules: Types, 29 other-modules: Types,
30 Arkode 30 Arkode
31 c-sources: src/helpers.c src/helpers.h 31 c-sources: src/helpers.c src/helpers.h
32 default-language: Haskell2010
32 33
33executable sundials 34test-suite hmatrix-sundials-testsuite
35 type: exitcode-stdio-1.0
34 main-is: Main.hs 36 main-is: Main.hs
35 other-modules: Types, 37 other-modules: Types,
36 Numeric.Sundials.ARKode.ODE, 38 Numeric.Sundials.ARKode.ODE,
37 Arkode 39 Arkode
38 other-extensions: QuasiQuotes
39 build-depends: base >=4.10 && <4.11, 40 build-depends: base >=4.10 && <4.11,
40 inline-c >=0.6 && <0.7, 41 inline-c >=0.6 && <0.7,
41 vector >=0.12 && <0.13, 42 vector >=0.12 && <0.13,
@@ -51,3 +52,4 @@ executable sundials
51 default-language: Haskell2010 52 default-language: Haskell2010
52 extra-libraries: sundials_arkode 53 extra-libraries: sundials_arkode
53 c-sources: src/helpers.c src/helpers.h 54 c-sources: src/helpers.c src/helpers.h
55 default-language: Haskell2010