CMake: Disallow in-source builds except when building with the Visual
authorOscar Fuentes <ofv@wanadoo.es>
Fri, 14 Nov 2008 03:43:18 +0000 (03:43 +0000)
committerOscar Fuentes <ofv@wanadoo.es>
Fri, 14 Nov 2008 03:43:18 +0000 (03:43 +0000)
Studio IDE. CMake would overwrite the makefiles distributed with LLVM.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59292 91177308-0d34-0410-b5e6-96231b3b80d8

CMakeLists.txt

index 15dcf7fa2bf7ef9bd97df8f41b9d2cd89aaf8675..f3c89f1938fe59499e193df051a04352e76abb32 100644 (file)
@@ -5,6 +5,15 @@ set(PACKAGE_NAME llvm)
 set(PACKAGE_VERSION svn)
 set(PACKAGE_BUGREPORT "llvmbugs@cs.uiuc.edu")
 
+if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE )
+  message(FATAL_ERROR "In-source builds are not allowed.
+CMake would overwrite the makefiles distributed with LLVM.
+Please create a directory and run cmake from there, passing the path
+to this source directory as the last argument.
+This process created the file `CMakeCache.txt' and the directory `CMakeFiles'.
+Please delete them.")
+endif()
+
 include(FindPerl)
 
 set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR})