Skip to content
This repository was archived by the owner on Jul 14, 2022. It is now read-only.

Commit 76c9a1c

Browse files
authored
mpi_found vs found_mpi (#232)
1 parent 118c603 commit 76c9a1c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/cmake/SetupBLT.cmake

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ include(${BLT_SOURCE_DIR}/SetupBLT.cmake)
3737
if(ENABLE_MPI)
3838
# on some platforms (mostly cray systems) folks skip mpi
3939
# detection in BLT by setting ENABLE_FIND_MPI = OFF
40-
# in these cases, we need to set FOUND_MPI = TRUE,
41-
# since the rest of our cmake logic to include MPI uses FOUND_MPI
40+
# in these cases, we need to set MPI_FOUND = TRUE,
41+
# since the rest of our cmake logic to include MPI uses MPI_FOUND
4242
if(NOT ENABLE_FIND_MPI)
43-
set(FOUND_MPI ON CACHE BOOL "")
43+
set(MPI_FOUND ON CACHE BOOL "")
4444
endif()
4545
endif()
4646

0 commit comments

Comments
 (0)