-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
118 additions
and
174 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
This file was deleted.
Oops, something went wrong.
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,12 @@ | ||
|
||
message("") | ||
cmessage( WARNING "Defining applications...") | ||
|
||
add_subdirectory( ${CMAKE_SOURCE_DIR}/src/Applications ) | ||
add_subdirectory( ${CMAKE_SOURCE_DIR}/tests ) | ||
|
||
configure_file(cmake/generated/build_setup.sh.in | ||
"${PROJECT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/setup.sh" @ONLY) | ||
install(FILES "${PROJECT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/setup.sh" | ||
DESTINATION ${CMAKE_INSTALL_PREFIX}) | ||
|
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
File renamed without changes.
File renamed without changes.
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,22 @@ | ||
|
||
message("") | ||
cmessage( WARNING "Defining modules...") | ||
|
||
set( MODULES Utils ) | ||
|
||
# Add the basic modules | ||
list( APPEND MODULES DialDictionary) | ||
list( APPEND MODULES ParametersManager) | ||
list( APPEND MODULES SamplesManager) | ||
list( APPEND MODULES DatasetManager) | ||
list( APPEND MODULES Propagator) | ||
list( APPEND MODULES Fitter) | ||
|
||
if(WITH_CACHE_MANAGER) | ||
list( APPEND MODULES CacheManager ) | ||
endif() | ||
|
||
foreach(mod ${MODULES}) | ||
cmessage( STATUS "Adding cmake module: ${mod}" ) | ||
add_subdirectory( ${CMAKE_SOURCE_DIR}/src/${mod} ) | ||
endforeach() |
Oops, something went wrong.