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

Merge pull request #1850 from bilke/32bit-de

[Jenkins] Don't build cli on 32-bit Windows builds
parents 468a1115 1c5195f7
No related branches found
No related tags found
Loading
...@@ -47,7 +47,6 @@ add_executable(DataExplorer ...@@ -47,7 +47,6 @@ add_executable(DataExplorer
target_link_libraries(DataExplorer target_link_libraries(DataExplorer
BaseLib BaseLib
GeoLib GeoLib
MeshGeoToolsLib
MeshLib MeshLib
ApplicationsFileIO ApplicationsFileIO
DataHolderLib DataHolderLib
......
...@@ -20,18 +20,16 @@ add_library(OGSFileConverterLib ...@@ -20,18 +20,16 @@ add_library(OGSFileConverterLib
${UIS} ${UIS}
) )
target_link_libraries(OGSFileConverterLib target_link_libraries(OGSFileConverterLib
QtBase PUBLIC QtBase MathLib
MeshLib INTERFACE MeshLib
NumLib
) )
ADD_VTK_DEPENDENCY(OGSFileConverterLib)
add_executable(OGSFileConverter main.cpp) add_executable(OGSFileConverter main.cpp)
target_link_libraries(OGSFileConverter target_link_libraries(OGSFileConverter
ApplicationsLib
OGSFileConverterLib OGSFileConverterLib
QtBase )
GeoLib)
ADD_VTK_DEPENDENCY(OGSFileConverter) ADD_VTK_DEPENDENCY(OGSFileConverter)
set_property(TARGET OGSFileConverter PROPERTY FOLDER "Utilities") set_property(TARGET OGSFileConverter PROPERTY FOLDER "Utilities")
......
...@@ -249,12 +249,14 @@ if(TARGET Boost) ...@@ -249,12 +249,14 @@ if(TARGET Boost)
add_dependencies(BaseLib Boost) add_dependencies(BaseLib Boost)
endif() endif()
add_subdirectory( GeoLib ) add_subdirectory( GeoLib )
add_subdirectory( MaterialLib )
add_subdirectory( MathLib ) add_subdirectory( MathLib )
add_subdirectory( MeshLib ) add_subdirectory( MeshLib )
add_subdirectory( MeshGeoToolsLib ) add_subdirectory( MeshGeoToolsLib )
add_subdirectory( NumLib ) add_subdirectory( NumLib )
add_subdirectory( ProcessLib ) if(OGS_BUILD_CLI OR OGS_BUILD_UTILS OR OGS_BUILD_TESTS)
add_subdirectory( MaterialLib )
add_subdirectory( ProcessLib )
endif()
if( OGS_BUILD_TESTS AND NOT IS_SUBPROJECT ) if( OGS_BUILD_TESTS AND NOT IS_SUBPROJECT )
add_subdirectory( Tests ) add_subdirectory( Tests )
......
...@@ -3,13 +3,11 @@ def defaultCMakeOptions = ...@@ -3,13 +3,11 @@ def defaultCMakeOptions =
'-DOGS_32_BIT=ON ' + '-DOGS_32_BIT=ON ' +
'-DOGS_LIB_BOOST=System ' + '-DOGS_LIB_BOOST=System ' +
'-DOGS_LIB_VTK=System ' + '-DOGS_LIB_VTK=System ' +
'-DOGS_DOWNLOAD_ADDITIONAL_CONTENT=ON ' '-DOGS_DOWNLOAD_ADDITIONAL_CONTENT=ON ' +
def guiCMakeOptions =
'-DOGS_BUILD_GUI=ON ' + '-DOGS_BUILD_GUI=ON ' +
'-DOGS_BUILD_UTILS=ON ' + '-DOGS_BUILD_UTILS=OFF ' +
'-DOGS_BUILD_TESTS=OFF ' + '-DOGS_BUILD_TESTS=OFF ' +
'-DOGS_BUILD_METIS=ON ' '-DOGS_BUILD_CLI=OFF'
def configure = new ogs.configure() def configure = new ogs.configure()
def build = new ogs.build() def build = new ogs.build()
...@@ -21,7 +19,7 @@ withEnv(helper.getEnv(this, 'x32')) { ...@@ -21,7 +19,7 @@ withEnv(helper.getEnv(this, 'x32')) {
stage('Data Explorer 32-bit (Win)') { stage('Data Explorer 32-bit (Win)') {
configure.win( configure.win(
arch: 'x86', arch: 'x86',
cmakeOptions: defaultCMakeOptions + guiCMakeOptions, cmakeOptions: defaultCMakeOptions,
conanOptions: "-o gui=True", conanOptions: "-o gui=True",
script: this script: this
) )
......
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