[MSIEXEC][RUNONCE][WINLOGON] Properly track resource file dependencies. CORE-9806

svn path=/trunk/; revision=68282
This commit is contained in:
Amine Khaldi 2015-06-26 18:04:31 +00:00
parent dd49d4d4a9
commit 26878eaacf
3 changed files with 3 additions and 0 deletions

View file

@ -7,6 +7,7 @@ list(APPEND SOURCE
service.c
precomp.h)
add_rc_deps(rsrc.rc ${CMAKE_CURRENT_SOURCE_DIR}/msiexec.ico)
add_executable(msiexec ${SOURCE} rsrc.rc)
set_module_type(msiexec win32gui)
target_link_libraries(msiexec uuid wine)

View file

@ -1,4 +1,5 @@
add_rc_deps(runonce.rc ${CMAKE_CURRENT_SOURCE_DIR}/res/icon.ico)
add_executable(runonce runonce.c runonce.rc)
set_module_type(runonce win32gui UNICODE)
add_importlibs(runonce advapi32 user32 msvcrt kernel32 ntdll)

View file

@ -16,6 +16,7 @@ list(APPEND SOURCE
winlogon.h
${CMAKE_CURRENT_BINARY_DIR}/winreg_s.c)
add_rc_deps(winlogon.rc ${CMAKE_CURRENT_SOURCE_DIR}/res/winlogon.ico)
add_executable(winlogon ${SOURCE} winlogon.rc)
target_link_libraries(winlogon wine)
set_module_type(winlogon win32gui)