-
Notifications
You must be signed in to change notification settings - Fork 573
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create single file MpiReleaseDebugSharedPtPthreads.cmake read in with…
… -C (#2462) Now this makes it stupid easy to reproduce this particular build. You just do: source <trilinos-base-dir>/cmake/load_sems_dev_env.sh cmake -C <trilinos-base-dir>/cmake/std/MpiReleaseDebugSharedPtPthreads.cmake \ -DTrilinos_ENABLE_TESTS=ON -DTrilinos_ENABLE_<PACKAGE>=ON \ <trilinos-base-dir>
- Loading branch information
1 parent
82477db
commit ec01280
Showing
4 changed files
with
24 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# This file can be read in using either: | ||
# | ||
# -C <abs-path>/<file-name>.cmake | ||
# | ||
# or: | ||
# | ||
# -DTrilinos_CONFIGURE_OPTIONS_FILE:STRING=cmake/std/<file-name>.cmake | ||
# | ||
|
||
# Handle this being passed in with -C option instead of | ||
# <Project>_CONFIGURE_OPTIONS_FILE. | ||
IF ("${PROJECT_NAME}" STREQUAL "") | ||
SET(PROJECT_NAME Trilinos) | ||
INCLUDE("${CMAKE_CURRENT_LIST_DIR}/../tribits/core/utils/AssertDefined.cmake") | ||
ENDIF() | ||
|
||
# NOTE: The order of these includes matters! | ||
|
||
include("${CMAKE_CURRENT_LIST_DIR}/MpiReleaseDebugSharedPtSettings.cmake") | ||
include("${CMAKE_CURRENT_LIST_DIR}/BasicCiTestingSettings.cmake") | ||
include("${CMAKE_CURRENT_LIST_DIR}/sems/SEMSDevEnv.cmake") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters