Skip to content
Snippets Groups Projects

feat(Build): Add CMake option to install configuration examples

Merged Reinhard Biegel requested to merge 222-make-example-configs-available-in-artifact into develop
3 files
+ 17
2
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 2
0
@@ -28,6 +28,7 @@ option(WITH_DEBUG_POSTFIX "Use 'd' binary postfix on Windows platform" ON)
option(INSTALL_SYSTEM_RUNTIME_DEPS "Copy detected system runtime dependencies to install directory (i.e. MinGW system libraries)" OFF)
option(INSTALL_EXTRA_RUNTIME_DEPS "Copy detected third party runtime dependencies to install directory (i.e. required shared libraries found in specified CMAKE_PREFIX_PATH)" OFF)
option(INSTALL_EXAMPLES "Install configuration examples" ON)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
@@ -142,6 +143,7 @@ set(SUBDIR_LIB_COMMON "${SUBDIR_LIB_MODULES}/common" CACHE PATH "Installation di
set(SUBDIR_LIB_CORE "${SUBDIR_LIB_MODULES}" CACHE PATH "Installation directory for core simulation libraries")
set(SUBDIR_XML_COMPONENTS "components" CACHE PATH "Installation directory for core components")
set(SUBDIR_LIB_EXTERNAL "lib" CACHE PATH "Installation directory for external simulation dependencies (libraries)")
set(SUBDIR_EXAMPLES "examples" CACHE PATH "Installation directory for configuration examples")
if(WIN32)
# dlls have to reside in the directory of the executable loading them
Loading