diff options
Diffstat (limited to 'hmatrix.cabal')
-rw-r--r-- | hmatrix.cabal | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/hmatrix.cabal b/hmatrix.cabal index bfe875d..63da6fb 100644 --- a/hmatrix.cabal +++ b/hmatrix.cabal | |||
@@ -23,7 +23,7 @@ Description: Purely functional interface to basic linear algebra | |||
23 | Category: Math | 23 | Category: Math |
24 | tested-with: GHC ==6.10.4, GHC ==6.12.1, GHC ==6.12.3, GHC ==7.0.1, GHC==7.0.2, GHC==7.2.1 | 24 | tested-with: GHC ==6.10.4, GHC ==6.12.1, GHC ==6.12.3, GHC ==7.0.1, GHC==7.0.2, GHC==7.2.1 |
25 | 25 | ||
26 | cabal-version: >=1.6 | 26 | cabal-version: >=1.8 |
27 | 27 | ||
28 | build-type: Custom | 28 | build-type: Custom |
29 | 29 | ||
@@ -224,3 +224,16 @@ source-repository head | |||
224 | -- type: exitcode-stdio-1.0 | 224 | -- type: exitcode-stdio-1.0 |
225 | -- main-is: examples/tests.hs | 225 | -- main-is: examples/tests.hs |
226 | 226 | ||
227 | test-suite test-hmatrix | ||
228 | type: exitcode-stdio-1.0 | ||
229 | main-is: tests.hs | ||
230 | build-depends: hmatrix | ||
231 | , base | ||
232 | , QuickCheck | ||
233 | , storable-complex | ||
234 | , array | ||
235 | , process | ||
236 | , HUnit | ||
237 | , random | ||
238 | hs-source-dirs: lib, examples | ||
239 | Extensions: ForeignFunctionInterface, CPP | ||