diff options
Diffstat (limited to 'CBLAS')
-rw-r--r-- | CBLAS/CMakeLists.txt | 4 | ||||
-rw-r--r-- | CBLAS/src/CMakeLists.txt | 8 | ||||
-rw-r--r-- | CBLAS/testing/CMakeLists.txt | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/CBLAS/CMakeLists.txt b/CBLAS/CMakeLists.txt index 9f6f043a..a4a9b8d5 100644 --- a/CBLAS/CMakeLists.txt +++ b/CBLAS/CMakeLists.txt @@ -34,11 +34,11 @@ install( FILES ${CBLAS_INCLUDE} ${LAPACK_BINARY_DIR}/include/cblas_mangling.h DE if(BUILD_TESTING) add_subdirectory(testing) add_subdirectory(examples) -endif(BUILD_TESTING) +endif() if(NOT BLAS_FOUND) set(ALL_TARGETS ${ALL_TARGETS} blas) -endif(NOT BLAS_FOUND) +endif() # Export cblas targets from the # install tree, if any. diff --git a/CBLAS/src/CMakeLists.txt b/CBLAS/src/CMakeLists.txt index 41b74a23..90496b92 100644 --- a/CBLAS/src/CMakeLists.txt +++ b/CBLAS/src/CMakeLists.txt @@ -146,22 +146,22 @@ set(ALLOBJ ${SCLEV1} ${SLEV1} ${SLEV2} ${SLEV3} ${ERRHAND} # Single real precision if(CBLAS_SINGLE) set(ALLOBJ ${SCLEV1} ${SLEV1} ${SLEV2} ${SLEV3} ${ERRHAND}) -endif(CBLAS_SINGLE) +endif() # Double real precision if(CBLAS_DOUBLE) set(ALLOBJ ${DLEV1} ${DLEV2} ${DLEV3} ${ERRHAND}) -endif(CBLAS_DOUBLE) +endif() # Single complex precision if (CBLAS_COMPLEX) set(ALLOBJ ${CLEV1} ${SCLEV1} ${CLEV2} ${CLEV3} ${ERRHAND}) -endif(CBLAS_COMPLEX) +endif() # Double complex precision if (CBLAS_COMPLEX16) set(ALLOBJ ${ZLEV1} ${ZLEV2} ${ZLEV3} ${ERRHAND}) -endif(CBLAS_COMPLEX16) +endif() add_library(cblas ${ALLOBJ}) target_link_libraries(cblas ${BLAS_LIBRARIES} ) diff --git a/CBLAS/testing/CMakeLists.txt b/CBLAS/testing/CMakeLists.txt index 2456d229..56480299 100644 --- a/CBLAS/testing/CMakeLists.txt +++ b/CBLAS/testing/CMakeLists.txt @@ -22,7 +22,7 @@ macro(add_cblas_test output input target) -DINTDIR=${CMAKE_CFG_INTDIR} -P "${LAPACK_SOURCE_DIR}/TESTING/runtest.cmake") endif() -endmacro(add_cblas_test) +endmacro() # Object files for single real precision |