summaryrefslogtreecommitdiff
path: root/hmatrix.cabal
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2009-05-16 17:12:44 +0000
committerAlberto Ruiz <aruiz@um.es>2009-05-16 17:12:44 +0000
commit1412579714611555ae6263aed1bd8ffe71fa5961 (patch)
tree626ccf93c43418978e975f7a20c8604c8d76f6ff /hmatrix.cabal
parent37f71ca5188ba487d4e1c274873b187ddcb30576 (diff)
loadMatrix (based on wc)
Diffstat (limited to 'hmatrix.cabal')
-rw-r--r--hmatrix.cabal11
1 files changed, 9 insertions, 2 deletions
diff --git a/hmatrix.cabal b/hmatrix.cabal
index 5265451..133b602 100644
--- a/hmatrix.cabal
+++ b/hmatrix.cabal
@@ -55,9 +55,9 @@ flag unsafe
55 55
56library 56library
57 if flag(splitBase) 57 if flag(splitBase)
58 build-depends: base >= 3, array, QuickCheck, HUnit, storable-complex 58 build-depends: base >= 3, array, QuickCheck, HUnit, storable-complex, process
59 else 59 else
60 build-depends: base < 3, QuickCheck, HUnit, storable-complex 60 build-depends: base < 3, QuickCheck, HUnit, storable-complex, process
61 61
62 Build-Depends: haskell98 62 Build-Depends: haskell98
63 Extensions: ForeignFunctionInterface, 63 Extensions: ForeignFunctionInterface,
@@ -121,6 +121,13 @@ library
121 Numeric.LinearAlgebra.Tests.Properties 121 Numeric.LinearAlgebra.Tests.Properties
122 C-sources: lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c, 122 C-sources: lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c,
123 lib/Numeric/GSL/gsl-aux.c 123 lib/Numeric/GSL/gsl-aux.c
124 extra-source-files: lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h,
125 lib/Numeric/LinearAlgebra/LAPACK/clapack.h,
126 lib/Numeric/GSL/gsl-aux.h
127
128 extra-source-files: lib/Numeric/GSL/Special/auto.hs,
129 lib/Numeric/GSL/Special/autoall.sh,
130 lib/Numeric/GSL/Special/replace.hs
124 131
125 ghc-prof-options: -auto-all 132 ghc-prof-options: -auto-all
126 133