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
fa93cdd2
Commit
fa93cdd2
authored
6 years ago
by
Victor Poughon
Browse files
Options
Downloads
Patches
Plain Diff
BUG: update insource build error message
parent
e4b5abc4
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMake/PreventInSourceBuilds.cmake
+6
-25
6 additions, 25 deletions
CMake/PreventInSourceBuilds.cmake
with
6 additions
and
25 deletions
CMake/PreventInSourceBuilds.cmake
+
6
−
25
View file @
fa93cdd2
...
@@ -29,32 +29,13 @@ function(AssureOutOfSourceBuilds)
...
@@ -29,32 +29,13 @@ function(AssureOutOfSourceBuilds)
if
(
"
${
srcdir
}
"
STREQUAL
"
${
bindir
}
"
)
if
(
"
${
srcdir
}
"
STREQUAL
"
${
bindir
}
"
)
message
(
"######################################################"
)
message
(
"######################################################"
)
message
(
"# OTB should not be configured & built in the OTB source directory"
)
message
(
"# OTB should not be configured & built in the OTB source directory"
)
message
(
"# You must run cmake in a build directory."
)
message
(
"# You must run cmake in a build directory outside of the source tree."
)
message
(
"# For example:"
)
message
(
"# See the documentation for example build commands."
)
message
(
"# mkdir OTB-Sandbox ; cd OTB-Sandbox"
)
message
(
"# "
)
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
(
"# NOTE: Given that you already tried to make an in-source build"
)
message
(
"# CMake have already created several files & directories"
)
message
(
"# CMake has already created several files & directories"
)
message
(
"# in your source tree. run 'hg status' to find them and"
)
message
(
"# in your source tree. Run 'git status' to find them and"
)
message
(
"# remove them by doing:"
)
message
(
"# remove them."
)
message
(
"# "
)
message
(
"# cd OTB-Sandbox/OTB"
)
message
(
"# hg purge "
)
message
(
"# "
)
message
(
"######################################################"
)
message
(
"######################################################"
)
message
(
FATAL_ERROR
"Quitting configuration"
)
message
(
FATAL_ERROR
"Quitting configuration"
)
endif
()
endif
()
...
...
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