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.
This commit is contained in:
Hans Johnson
2019-10-31 11:36:27 -05:00
parent f1e8307308
commit 6fb3e5f176
59 changed files with 253 additions and 253 deletions

View File

@@ -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)