Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julien Cabieces
otb
Commits
18c8bbd3
Commit
18c8bbd3
authored
8 years ago
by
Guillaume Pasero
Browse files
Options
Downloads
Patches
Plain Diff
Revert "COMP: call find_package(OTB) if needed"
This reverts commit
2f6bf0da
.
parent
4afb3b81
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Examples/CMakeLists.txt
+4
-5
4 additions, 5 deletions
Examples/CMakeLists.txt
Utilities/Completion/CMakeLists.txt
+3
-8
3 additions, 8 deletions
Utilities/Completion/CMakeLists.txt
with
7 additions
and
13 deletions
Examples/CMakeLists.txt
+
4
−
5
View file @
18c8bbd3
...
...
@@ -10,16 +10,11 @@ endif()
#check if this is a standalone build?
find_package
(
OTB REQUIRED
)
message
(
STATUS
"[Examples] Found OTB:
${
OTB_USE_FILE
}
"
)
if
(
PROJECT_NAME STREQUAL
"OTBExamples"
)
if
(
BUILD_TESTING
)
include
(
CTest
)
endif
()
include
(
${
OTB_USE_FILE
}
)
# dashboard build. Why do I need to see the deprecated warnings on dashboard!
# It just fades the actual warnings and most importantly very annoying.
if
(
NOT
"$ENV{DASHBOARD_TEST_FROM_CTEST}"
STREQUAL
""
)
...
...
@@ -140,6 +135,10 @@ else()
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../CMake/OTBManageLargeInputPaths.cmake
)
endif
()
find_package
(
OTB REQUIRED
)
include
(
${
OTB_USE_FILE
}
)
message
(
STATUS
"Found OTB:
${
OTB_USE_FILE
}
"
)
set
(
OTB_TEST_DRIVER otbTestDriver
)
if
(
OTBApplicationEngine_LOADED
)
...
...
This diff is collapsed.
Click to expand it.
Utilities/Completion/CMakeLists.txt
+
3
−
8
View file @
18c8bbd3
##### check if standalone project ######
if
(
NOT PROJECT_NAME
)
cmake_minimum_required
(
VERSION 2.8.8 FATAL_ERROR
)
project
(
OTBCompletion
)
find_package
(
OTB REQUIRED
)
message
(
"OTBCompletion"
)
include
(
${
OTB_USE_FILE
}
)
endif
()
find_package
(
OTB REQUIRED
)
include
(
${
OTB_USE_FILE
}
)
add_executable
(
completionGenerator EXCLUDE_FROM_ALL completionGenerator.cxx
)
target_link_libraries
(
completionGenerator
${
OTB_LIBRARIES
}
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment