Skip to content
Snippets Groups Projects
Unverified Commit cfbe594c authored by Lars Bilke's avatar Lars Bilke Committed by GitHub
Browse files

Merge pull request #2393 from bilke/fix-linux-package

[CMake] Added missing Qt platform plugin to packages
parents 0e70f555 2486f504
No related branches found
No related tags found
No related merge requests found
...@@ -8,6 +8,9 @@ target_link_libraries(OGSFileConverterLib ...@@ -8,6 +8,9 @@ target_link_libraries(OGSFileConverterLib
PUBLIC ApplicationsFileIO MathLib QtBase ${VTK_LIBRARIES} PUBLIC ApplicationsFileIO MathLib QtBase ${VTK_LIBRARIES}
INTERFACE MeshLib INTERFACE MeshLib
) )
if(BUILD_SHARED_LIBS)
install(TARGETS OGSFileConverterLib LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
endif()
target_include_directories(OGSFileConverterLib PUBLIC target_include_directories(OGSFileConverterLib PUBLIC
${CMAKE_CURRENT_BINARY_DIR}/OGSFileConverterLib_autogen/include) ${CMAKE_CURRENT_BINARY_DIR}/OGSFileConverterLib_autogen/include)
......
...@@ -245,7 +245,7 @@ pipeline { ...@@ -245,7 +245,7 @@ pipeline {
stage('Envinf1 (serial)') { stage('Envinf1 (serial)') {
when { when {
beforeAgent true beforeAgent true
expression { return stage_required.build || stage_required.full } expression { return params.envinf1_serial && (stage_required.build || stage_required.full) }
} }
agent { label "envinf1"} agent { label "envinf1"}
environment { environment {
...@@ -287,7 +287,7 @@ pipeline { ...@@ -287,7 +287,7 @@ pipeline {
stage('Envinf1 (parallel)') { stage('Envinf1 (parallel)') {
when { when {
beforeAgent true beforeAgent true
expression { return stage_required.build || stage_required.full } expression { return params.envinf1_parallel && (stage_required.build || stage_required.full) }
} }
agent { label "envinf1"} agent { label "envinf1"}
environment { environment {
......
...@@ -95,6 +95,7 @@ if(MSVC) ...@@ -95,6 +95,7 @@ if(MSVC)
endif() endif()
if(UNIX AND NOT APPLE) if(UNIX AND NOT APPLE)
set(CONAN_IMPORTS ${CONAN_IMPORTS} "lib, *.so* -> ./lib") set(CONAN_IMPORTS ${CONAN_IMPORTS} "lib, *.so* -> ./lib")
set(CONAN_IMPORTS ${CONAN_IMPORTS} "plugins/platforms, *.so* -> ./bin/platforms")
endif() endif()
file(TIMESTAMP ${PROJECT_BINARY_DIR}/conan_install_timestamp.txt file_timestamp "%Y.%m.%d") file(TIMESTAMP ${PROJECT_BINARY_DIR}/conan_install_timestamp.txt file_timestamp "%Y.%m.%d")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment