[Lldb-commits] [PATCH] D13580: [debugserver, cmake] Add DEPENDS to custom commands.

Bruce Mitchener via lldb-commits lldb-commits at lists.llvm.org
Fri Oct 9 00:31:11 PDT 2015


brucem created this revision.
brucem added a reviewer: clayborg.
brucem added a subscriber: lldb-commits.

Add dependencies to the custom commands so that they get
re-executed as needed.

http://reviews.llvm.org/D13580

Files:
  tools/debugserver/source/MacOSX/CMakeLists.txt

Index: tools/debugserver/source/MacOSX/CMakeLists.txt
===================================================================
--- tools/debugserver/source/MacOSX/CMakeLists.txt
+++ tools/debugserver/source/MacOSX/CMakeLists.txt
@@ -13,15 +13,19 @@
   )
 add_custom_command(OUTPUT ${generated_mach_interfaces}
   COMMAND mig ${CMAKE_CURRENT_SOURCE_DIR}/dbgnub-mig.defs
+  DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/dbgnub-mig.defs
   )
 
 set(DEBUGSERVER_VERS_GENERATED_FILE ${CMAKE_CURRENT_BINARY_DIR}/debugserver_vers.c)
 set_source_files_properties(${DEBUGSERVER_VERS_GENERATED_FILE} PROPERTIES GENERATED 1)
 
 add_custom_command(OUTPUT ${DEBUGSERVER_VERS_GENERATED_FILE}
   COMMAND ${LLDB_SOURCE_DIR}/scripts/generate-vers.pl
           ${LLDB_SOURCE_DIR}/lldb.xcodeproj/project.pbxproj debugserver
-          > ${DEBUGSERVER_VERS_GENERATED_FILE})
+          > ${DEBUGSERVER_VERS_GENERATED_FILE}
+  DEPENDS ${LLDB_SOURCE_DIR}/scripts/generate-vers.pl
+          ${LLDB_SOURCE_DIR}/lldb.xcodeproj/project.pbxproj
+  )
 
 set(DEBUGSERVER_USED_LIBS
   lldbDebugserverCommon


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D13580.36925.patch
Type: text/x-patch
Size: 1063 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20151009/aa8663e2/attachment-0001.bin>


More information about the lldb-commits mailing list