Преглед на файлове

cmake: Fix missing space between sentences

This whitespace character between two sentences in a cmake error message
was accidentally removed in 349372b3b39e2346952732ab14122d23c7ec7a57
deadmeu преди 2 години
родител
ревизия
17f2b9aadb
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      CMakeLists.txt

+ 1 - 1
CMakeLists.txt

@@ -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()