Skip to content
Snippets Groups Projects
Commit 64a1dc6f authored by Guillaume Pasero's avatar Guillaume Pasero
Browse files

BUG: fix detection of superbuild in OTB tree

parent d3a1ecbd
No related branches found
No related tags found
No related merge requests found
......@@ -23,13 +23,12 @@ option(BUILD_MONTEVERDI "Clone and build Monteverdi" OFF)
set(SUPERBUILD_IN_OTB_TREE OFF)
if(EXISTS "${CMAKE_SOURCE_DIR}/../CMakeLists.txt")
file(STRINGS "${CMAKE_SOURCE_DIR}/../CMakeLists.txt" _CONTENT_CMAKELIST
REGEX "project\(OTB\)")
if("${_CONTENT_CMAKELIST}")
REGEX "project\\\(OTB\\\)")
if(NOT "${_CONTENT_CMAKELIST}" STREQUAL "")
set(SUPERBUILD_IN_OTB_TREE ON)
endif()
endif()
message(STATUS "Check if superbuild is in OTB tree : ${SUPERBUILD_IN_OTB_TREE}")
set(SB_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX})
......
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