Skip to content

Commit e1faf8f

Browse files
committed
Fix (?) SCALAPACK_BUILD_TESTING -> SCALAPACK_BUILD_TESTS
Both SCALAPACK_BUILD_TESTS and SCALAPACK_BUILD_TESTING were used. Only SCALAPACK_BUILD_TESTS is a cache variable (defined in the main CMakeLists), so I assume all instances have to be SCALAPACK_BUILD_TESTS
1 parent 3c4b9cd commit e1faf8f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

BLACS/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
add_subdirectory(SRC)
2-
if(${SCALAPACK_BUILD_TESTING})
2+
if(${SCALAPACK_BUILD_TESTS})
33
add_subdirectory(TESTING)
44
endif()

PBLAS/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
add_subdirectory(SRC)
2-
if(${SCALAPACK_BUILD_TESTING})
2+
if(${SCALAPACK_BUILD_TESTS})
33
add_subdirectory(TESTING)
44
add_subdirectory(TIMING)
55
endif()

REDIST/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
add_subdirectory(SRC)
2-
if(${SCALAPACK_BUILD_TESTING})
2+
if(${SCALAPACK_BUILD_TESTS})
33
add_subdirectory(TESTING)
44
endif()

0 commit comments

Comments
 (0)