Fix CMakeLists.txt In-source build error message format
This commit is contained in:
parent
37eecdb4ee
commit
725f6f9483
|
@ -1,7 +1,10 @@
|
|||
cmake_minimum_required( VERSION 2.8.4 FATAL_ERROR )
|
||||
|
||||
if ( ${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR} )
|
||||
message( FATAL_ERROR "In-source builds not allowed. Please make a new directory (called a build directory) and run CMake from there, points here. You may need to remove CMakeCache.txt." )
|
||||
message( FATAL_ERROR
|
||||
"In-source builds not allowed. Please make a new directory (called"
|
||||
" a build directory) and run CMake from there, points here."
|
||||
" You may need to remove CMakeCache.txt." )
|
||||
endif()
|
||||
|
||||
project( kicad-i18n NONE )
|
||||
|
|
Loading…
Reference in New Issue