mirror of
https://github.com/tstack/lnav
synced 2024-11-08 01:10:29 +00:00
11 lines
315 B
CMake
11 lines
315 B
CMake
|
# ---- In-source guard ----
|
||
|
|
||
|
if(CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR)
|
||
|
message(
|
||
|
FATAL_ERROR
|
||
|
"In-source builds are not supported. "
|
||
|
"Please read the BUILDING document before trying to build this project. "
|
||
|
"You may need to delete 'CMakeCache.txt' and 'CMakeFiles/' first."
|
||
|
)
|
||
|
endif()
|