diff options
author | Kyle Guinn <elyk03@gmail.com> | 2017-01-22 14:22:47 -0600 |
---|---|---|
committer | Kyle Guinn <elyk03@gmail.com> | 2017-01-22 14:22:47 -0600 |
commit | 0d8eb20739a7397e7fc801f743385456ccf4290c (patch) | |
tree | 5b5a0845db199f55857ec79a981b8188dd418721 /BLAS/SRC | |
parent | 38e8b31abf8baa60ecd05e3acdbf651a78b7fde2 (diff) | |
download | lapack-0d8eb20739a7397e7fc801f743385456ccf4290c.tar.gz lapack-0d8eb20739a7397e7fc801f743385456ccf4290c.tar.bz2 lapack-0d8eb20739a7397e7fc801f743385456ccf4290c.zip |
Remove stale libm dependency
Diffstat (limited to 'BLAS/SRC')
-rw-r--r-- | BLAS/SRC/CMakeLists.txt | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/BLAS/SRC/CMakeLists.txt b/BLAS/SRC/CMakeLists.txt index a9306fc4..b9f722d6 100644 --- a/BLAS/SRC/CMakeLists.txt +++ b/BLAS/SRC/CMakeLists.txt @@ -137,13 +137,9 @@ endif() add_library(blas ${ALLOBJ}) -#if(UNIX) -# target_link_libraries(blas m) -#endif() set_target_properties( blas PROPERTIES VERSION ${LAPACK_VERSION} SOVERSION ${LAPACK_MAJOR_VERSION} ) -target_link_libraries(blas) lapack_install_library(blas) |