9 lines
255 B
CMake
9 lines
255 B
CMake
# In-source build guard
|
|
if(CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR)
|
|
message(
|
|
FATAL_ERROR
|
|
"In-source builds are not supported. "
|
|
"You may need to delete 'CMakeCache.txt' and 'CMakeFiles/' before rebuilding this project."
|
|
)
|
|
endif()
|