diff --git a/Applications/Utils/OGSFileConverter/CMakeLists.txt b/Applications/Utils/OGSFileConverter/CMakeLists.txt index 38bd1d1e12865fffd4a8345d9ee241f1d6125c5a..faa3ab6209cc18069baf787cac05f01553e481ca 100644 --- a/Applications/Utils/OGSFileConverter/CMakeLists.txt +++ b/Applications/Utils/OGSFileConverter/CMakeLists.txt @@ -8,6 +8,9 @@ target_link_libraries(OGSFileConverterLib PUBLIC ApplicationsFileIO MathLib QtBase ${VTK_LIBRARIES} INTERFACE MeshLib ) +if(BUILD_SHARED_LIBS) + install(TARGETS OGSFileConverterLib LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}) +endif() target_include_directories(OGSFileConverterLib PUBLIC ${CMAKE_CURRENT_BINARY_DIR}/OGSFileConverterLib_autogen/include) diff --git a/Jenkinsfile b/Jenkinsfile index b54d9eff1f027c933c849db450a7bbacb4709d90..dad9abb2f5d42a47cf9694f9ae014f8a26891227 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -245,7 +245,7 @@ pipeline { stage('Envinf1 (serial)') { when { beforeAgent true - expression { return stage_required.build || stage_required.full } + expression { return params.envinf1_serial && (stage_required.build || stage_required.full) } } agent { label "envinf1"} environment { @@ -287,7 +287,7 @@ pipeline { stage('Envinf1 (parallel)') { when { beforeAgent true - expression { return stage_required.build || stage_required.full } + expression { return params.envinf1_parallel && (stage_required.build || stage_required.full) } } agent { label "envinf1"} environment { diff --git a/scripts/cmake/ConanSetup.cmake b/scripts/cmake/ConanSetup.cmake index 1009b328f6a8d97fda53707159eff9259492c195..09cb006742fe197120fd6e16fc94c849ad8ab6e7 100644 --- a/scripts/cmake/ConanSetup.cmake +++ b/scripts/cmake/ConanSetup.cmake @@ -95,6 +95,7 @@ if(MSVC) endif() if(UNIX AND NOT APPLE) set(CONAN_IMPORTS ${CONAN_IMPORTS} "lib, *.so* -> ./lib") + set(CONAN_IMPORTS ${CONAN_IMPORTS} "plugins/platforms, *.so* -> ./bin/platforms") endif() file(TIMESTAMP ${PROJECT_BINARY_DIR}/conan_install_timestamp.txt file_timestamp "%Y.%m.%d")