소스 검색

Unconditionally rebuild "CTK-build" inner project. Restore commit 1be215aef3

See #32
Jean-Christophe Fillion-Robin 11 년 전
부모
커밋
00be8fae58
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 10 0
      SuperBuild.cmake

+ 10 - 0
SuperBuild.cmake

@@ -53,3 +53,13 @@ ExternalProject_Add(${proj}
     ${CTK_DEPENDENCIES}
   STEP_TARGETS configure
   )
+
+# This custom external project step forces the build and later
+# steps to run whenever a top level build is done...
+ExternalProject_Add_Step(${proj} forcebuild
+  COMMAND ${CMAKE_COMMAND} -E echo_append ""
+  COMMENT "Forcing build step for '${proj}'"
+  DEPENDEES configure
+  DEPENDERS build
+  ALWAYS 1
+  )