[REACTOS][VMWINST][WELCOME] Properly track resource file dependencies. CORE-9806

svn path=/trunk/; revision=68206
This commit is contained in:
Amine Khaldi 2015-06-20 13:03:46 +00:00
parent cea8c71960
commit 01158ef322
3 changed files with 6 additions and 0 deletions

View 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)

View 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)

View 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)