[REACTOS][VMWINST][WELCOME] Properly track resource file dependencies. CORE-9806
authorAmine Khaldi <amine.khaldi@reactos.org>
Sat, 20 Jun 2015 13:03:46 +0000 (13:03 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Sat, 20 Jun 2015 13:03:46 +0000 (13:03 +0000)
svn path=/trunk/; revision=68206

reactos/base/setup/reactos/CMakeLists.txt
reactos/base/setup/vmwinst/CMakeLists.txt
reactos/base/setup/welcome/CMakeLists.txt

index e01d532..aec188d 100644 (file)
@@ -1,4 +1,6 @@
 
+file(GLOB reactos_rc_deps res/*.*)
+add_rc_deps(reactos.rc ${reactos_rc_deps})
 add_executable(reactos reactos.c reactos.rc)
 target_link_libraries(reactos uuid)
 set_module_type(reactos win32gui UNICODE)
index f5eac7a..6a5c0eb 100644 (file)
@@ -1,4 +1,6 @@
 
+file(GLOB vmwinst_rc_deps resources/*.*)
+add_rc_deps(vmwinst.rc ${vmwinst_rc_deps})
 add_executable(vmwinst vmwinst.c vmwinst.rc)
 target_link_libraries(vmwinst ${PSEH_LIB})
 set_module_type(vmwinst win32gui UNICODE)
index e82fa08..e8b3f24 100644 (file)
@@ -1,4 +1,6 @@
 
+file(GLOB welcome_rc_deps res/*.*)
+add_rc_deps(welcome.rc ${welcome_rc_deps})
 add_executable(welcome welcome.c welcome.rc)
 set_module_type(welcome win32gui UNICODE)
 add_importlibs(welcome gdi32 user32 shell32 msvcrt kernel32 ntdll)