Skip to content
Snippets Groups Projects
Commit 9eedb8f1 authored by Julien Malik's avatar Julien Malik
Browse files

ENH: build and test ApplicationEngine and Wrappers only if BUILD_APPLICATIONS is enabled

parent 744f2870
No related branches found
No related tags found
No related merge requests found
...@@ -31,8 +31,10 @@ IF(OTB_USE_PQXX) ...@@ -31,8 +31,10 @@ IF(OTB_USE_PQXX)
ADD_SUBDIRECTORY(GeospatialAnalysis) ADD_SUBDIRECTORY(GeospatialAnalysis)
ENDIF(OTB_USE_PQXX) ENDIF(OTB_USE_PQXX)
ADD_SUBDIRECTORY(ApplicationEngine) IF(BUILD_APPLICATIONS)
ADD_SUBDIRECTORY(Wrappers) ADD_SUBDIRECTORY(ApplicationEngine)
ADD_SUBDIRECTORY(Wrappers)
ENDIF(BUILD_APPLICATIONS)
IF(OTB_COMPILE_WITH_FULL_WARNING) IF(OTB_COMPILE_WITH_FULL_WARNING)
IF(CMAKE_COMPILER_IS_GNUCXX) IF(CMAKE_COMPILER_IS_GNUCXX)
......
# $Id$ # $Id$
ADD_SUBDIRECTORY(ApplicationEngine)
ADD_SUBDIRECTORY(Common) ADD_SUBDIRECTORY(Common)
ADD_SUBDIRECTORY(IO) ADD_SUBDIRECTORY(IO)
ADD_SUBDIRECTORY(BasicFilters) ADD_SUBDIRECTORY(BasicFilters)
...@@ -34,5 +33,6 @@ IF(OTB_USE_PQXX) ...@@ -34,5 +33,6 @@ IF(OTB_USE_PQXX)
ENDIF(OTB_USE_PQXX) ENDIF(OTB_USE_PQXX)
IF(BUILD_APPLICATIONS) IF(BUILD_APPLICATIONS)
ADD_SUBDIRECTORY(ApplicationEngine)
ADD_SUBDIRECTORY(Wrappers) ADD_SUBDIRECTORY(Wrappers)
ENDIF(BUILD_APPLICATIONS) ENDIF(BUILD_APPLICATIONS)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment