aboutsummaryrefslogtreecommitdiffhomepage
path: root/lapack
diff options
context:
space:
mode:
authorGravatar Hans Johnson <hans.j.johnson@gmail.com>2019-10-31 11:36:27 -0500
committerGravatar Hans Johnson <hans.j.johnson@gmail.com>2019-10-31 11:36:27 -0500
commit6fb3e5f1767855bc1a8aa3c868bc7fbf0eeb67ef (patch)
treeee5db623e6eb11561a60f9abf0f6d0696c950360 /lapack
parentf1e83073082f2733eec6235f2fdf251217a54ade (diff)
STYLE: Remove CMake-language block-end command arguments
Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style.
Diffstat (limited to 'lapack')
-rw-r--r--lapack/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/lapack/CMakeLists.txt b/lapack/CMakeLists.txt
index af436a323..baa21548f 100644
--- a/lapack/CMakeLists.txt
+++ b/lapack/CMakeLists.txt
@@ -86,9 +86,9 @@ if(EIGEN_ENABLE_LAPACK_TESTS)
endif()
-endif(EIGEN_ENABLE_LAPACK_TESTS)
+endif()
-endif(EIGEN_Fortran_COMPILER_WORKS)
+endif()
add_library(eigen_lapack_static ${EigenLapack_SRCS} ${ReferenceLapack_SRCS})
add_library(eigen_lapack SHARED ${EigenLapack_SRCS})
@@ -152,7 +152,7 @@ if(EXISTS ${eigen_full_path_to_testing_lapack})
-DINTDIR=${CMAKE_CFG_INTDIR}
-P "${LAPACK_SOURCE_DIR}/testing/runtest.cmake")
endif()
- endmacro(add_lapack_test)
+ endmacro()
if (BUILD_SINGLE)
add_lapack_test(stest.out stest.in xlintsts)