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

Merge pull request #2008 from bilke/cmake-conan-fix

Cmake conan fix
parents 86e4d488 2a55f4df
No related branches found
No related tags found
No related merge requests found
...@@ -230,7 +230,8 @@ pipeline { ...@@ -230,7 +230,8 @@ pipeline {
publishReports { } publishReports { }
warnings(canResolveRelativePaths: false, warnings(canResolveRelativePaths: false,
consoleParsers: [[parserName: 'MSBuild']], consoleParsers: [[parserName: 'MSBuild']],
messagesPattern: '.*\\.conan.*') excludePattern: '.*\\.conan.*',
messagesPattern: '.*QVTK.*')
} }
failure { failure {
dir('build') { deleteDir() } dir('build') { deleteDir() }
......
...@@ -102,3 +102,8 @@ conan_cmake_run(REQUIRES ${CONAN_REQUIRES} ...@@ -102,3 +102,8 @@ conan_cmake_run(REQUIRES ${CONAN_REQUIRES}
UPDATE UPDATE
BUILD ${OGS_CONAN_BUILD} BUILD ${OGS_CONAN_BUILD}
) )
if(NOT ${OGS_CONAN_BUILD} MATCHES "never|always|missing")
message(STATUS "Warning: Resetting CMake variable OGS_CONAN_BUILD to its default value of 'missing'")
set(OGS_CONAN_BUILD "missing" CACHE INTERNAL "")
endif()
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