diff options
| author | click <none@none> | 2010-05-18 04:28:13 +0200 |
|---|---|---|
| committer | click <none@none> | 2010-05-18 04:28:13 +0200 |
| commit | eed0d341d285390eba42bc9c911ba98345f88099 (patch) | |
| tree | 224b5ae70286d851c8b2cd078e45597738e237c7 | |
| parent | b5342fe7542caea020a89112a93bb963aae132e2 (diff) | |
Rewrite the warning (and thus add more hand-holding) regarding the "insourcetree build warning" when attempting a build directly in sourcetree.
Adds additional information on how to actually "unlock" the sourcetree again after an attempt to build in the sourcetree has been made.
--HG--
branch : trunk
| -rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ad5a8384bfe..78834e3d485 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ include(cmake/PCH.cmake) # Force out-of-source build string(COMPARE EQUAL "${CMAKE_SOURCE_DIR}" "${CMAKE_BINARY_DIR}" BUILDING_IN_SOURCE) if(BUILDING_IN_SOURCE) - message(FATAL_ERROR "This project requires an out of source build. Please create a separate build directory and run 'cmake path_to_project [options]' there.") + message(FATAL_ERROR "This project requires an out of source build. Remove the file 'CMakeCache.txt' found in this directory before continuing, and create a separate build directory and run 'cmake path_to_project [options]' from there.") endif(BUILDING_IN_SOURCE) # Select the Release build configuration by default. |
