Skip to content
Snippets Groups Projects
Commit 67887d4f authored by Rashad Kanavath's avatar Rashad Kanavath
Browse files

ENH: add package_otb target into SuperBuild

parent 8d719792
No related branches found
No related tags found
No related merge requests found
......@@ -156,3 +156,28 @@ include(SystemCheckup)
# Main external projet : dependencies are included (if needed) in each external project
include(External_otb)
#check compiler is gnu?
if(UNIX AND NOT APPLE)
set(archive_name ${CMAKE_PROJECT_NAME}-${OTB_VERSION_STRING}-Linux64)
execute_process(COMMAND ${CMAKE_COMMAND} -E remove_directory "${CMAKE_INSTALL_PREFIX}/${archive_name}")
#should we add otbiceviewer.exe?
file(GLOB pefiles
${CMAKE_INSTALL_PREFIX}/bin/otbApplicationLaunch*
${CMAKE_INSTALL_PREFIX}/bin/otbTestDriver )
file(WRITE "${CMAKE_BINARY_DIR}/PACKAGE_OTB/src/CMakeLists.txt"
"cmake_minimum_required(VERSION 2.6)
include(CMakeParseArguments)
set(QT_PLUGINS_DIR \"${QT_PLUGINS_DIR}\")
set(CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")
include(${CMAKE_SOURCE_DIR}/CMake/External_package.cmake)
superbuild_package(
OUTDIR \"${archive_name}\"
PEFILES \"${pefiles}\"
SEARCHDIRS \"\")")
endif(UNIX AND NOT APPLE)
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