Skip to content
Snippets Groups Projects
Commit fa93cdd2 authored by Victor Poughon's avatar Victor Poughon
Browse files

BUG: update insource build error message

parent e4b5abc4
Branches
Tags
No related merge requests found
...@@ -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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment