cmake: Fix missing space between sentences

This whitespace character between two sentences in a cmake error message
was accidentally removed in 349372b3b3
This commit is contained in:
deadmeu 2023-07-16 00:55:21 +10:00 committed by Lain
parent 9967322834
commit 17f2b9aadb

View file

@ -39,7 +39,7 @@ include(VersionConfig)
# Prohibit in-source builds
if("${CMAKE_BINARY_DIR}" STREQUAL "${CMAKE_SOURCE_DIR}")
message(FATAL_ERROR "OBS: You cannot build in a source directory (or any directory with CMakeLists.txt file)."
message(FATAL_ERROR "OBS: You cannot build in a source directory (or any directory with CMakeLists.txt file). "
"Please make a build subdirectory. Feel free to remove CMakeCache.txt and CMakeFiles.")
endif()