Skip to content

Commit

Permalink
Filled in the option descriptions. (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
william-dawson authored Apr 30, 2019
1 parent 9cb322b commit 2f1f05a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ find_package(SWIG 3.0)

################################################################################
## Testing
option(FORTRAN_ONLY "Build only the Fortran bindings." OFF)
if (NOT FORTRAN_ONLY)
enable_testing()
else()
Expand Down Expand Up @@ -54,12 +55,14 @@ endif()

################################################################################
## Check MPI Features
option(USE_MPIH OFF)
option(USE_MPIH "Use mpi.h for systems that don't have the mpi module" OFF)
if (USE_MPIH OR NOT ${MPI_Fortran_HAVE_F90_MODULE})
add_definitions(-DUSE_MPIH)
endif()

option(NOIALLGATHER OFF)
option(NOIALLGATHER
"A (slower) alternative communication strategy if iallgather not implemented"
OFF)
if (NOIALLGATHER)
add_definitions(-DNOIALLGATHER)
message(STATUS "IAllgather replacement activated.")
Expand Down

0 comments on commit 2f1f05a

Please sign in to comment.