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
David Youssefi
otb
Commits
5a8f155e
Commit
5a8f155e
authored
14 years ago
by
Emmanuel Christophe
Browse files
Options
Downloads
Patches
Plain Diff
ENH: prevent in-source build (following discussion on the ITK dev list)
parent
565b6598
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMake/PreventInSourceBuilds.cmake
+43
-0
43 additions, 0 deletions
CMake/PreventInSourceBuilds.cmake
CMakeLists.txt
+5
-0
5 additions, 0 deletions
CMakeLists.txt
with
48 additions
and
0 deletions
CMake/PreventInSourceBuilds.cmake
0 → 100644
+
43
−
0
View file @
5a8f155e
#
# This function will prevent in-source builds
function
(
AssureOutOfSourceBuilds
)
# make sure the user doesn't play dirty with symlinks
get_filename_component
(
srcdir
"
${
CMAKE_SOURCE_DIR
}
"
REALPATH
)
get_filename_component
(
bindir
"
${
CMAKE_BINARY_DIR
}
"
REALPATH
)
# disallow in-source builds
if
(
"
${
srcdir
}
"
STREQUAL
"
${
bindir
}
"
)
message
(
"######################################################"
)
message
(
"# OTB should not be configured & built in the OTB source directory"
)
message
(
"# You must run cmake in a build directory."
)
message
(
"# For example:"
)
message
(
"# mkdir OTB-Sandbox ; cd OTB-Sandbox"
)
message
(
"# hg clone http://hg.orfeo-toolbox.org/OTB # or download & unpack the source tarball"
)
message
(
"# mkdir OTB-Binary "
)
message
(
"# this will create the following directory structure "
)
message
(
"# "
)
message
(
"# OTB-Sandbox"
)
message
(
"# +--OTB "
)
message
(
"# +--OTB-Binary "
)
message
(
"# "
)
message
(
"# Then you can proceed to configure and build "
)
message
(
"# by using the following commands "
)
message
(
"# "
)
message
(
"# cd OTB-Binary"
)
message
(
"# ccmake ../OTB"
)
message
(
"# make "
)
message
(
"# "
)
message
(
"# NOTE: Given that you already tried to make an in-source build"
)
message
(
"# CMake have already created several files & directories"
)
message
(
"# in your source tree. run 'hg status' to find them and"
)
message
(
"# remove them by doing:"
)
message
(
"# "
)
message
(
"# cd OTB-Sandbox/OTB"
)
message
(
"# hg purge "
)
message
(
"# "
)
message
(
"######################################################"
)
message
(
FATAL_ERROR
"Quitting configuration"
)
endif
()
endfunction
()
AssureOutOfSourceBuilds
()
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
5
−
0
View file @
5a8f155e
...
...
@@ -6,6 +6,11 @@ IF(COMMAND CMAKE_POLICY)
CMAKE_POLICY
(
SET CMP0003 NEW
)
ENDIF
(
COMMAND CMAKE_POLICY
)
#-----------------------------------------------------------------------------
# Sanity check -- prevent in-source builds
#
INCLUDE
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/CMake/PreventInSourceBuilds.cmake
)
PROJECT
(
OTB
)
# Path to additional CMake modules
...
...
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