소스 검색

BUG: Updated ExternlProject.cmake / generation of <project>-gitclone.cmake

In <Project>-gitclone.cmake, error message were displayed using single quote, change
it to use double quote. That error message will be displayer with spaces.
Jean-Christophe Fillion-Robin 15 년 전
부모
커밋
29d486afc8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      CMake/ExternalProject.cmake

+ 1 - 1
CMake/ExternalProject.cmake

@@ -719,7 +719,7 @@ execute_process(
   RESULT_VARIABLE error_code
   )
 if(error_code)
-  message(FATAL_ERROR 'Failed to clone repository: ${git_repository}')
+  message(FATAL_ERROR \"Failed to clone repository: ${git_repository}\")
 endif()
 ")    
     set(comment "Performing download step (GIT clone) for '${name}'")