cpptrace/cmake/PreventInSourceBuilds.cmake
2023-11-15 00:36:02 -05:00

9 lines
249 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()