浏览代码

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
 # Prohibit in-source builds
 if("${CMAKE_BINARY_DIR}" STREQUAL "${CMAKE_SOURCE_DIR}")
 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.")
                       "Please make a build subdirectory. Feel free to remove CMakeCache.txt and CMakeFiles.")
 endif()
 endif()