diff --git a/reactos/base/system/msiexec/CMakeLists.txt b/reactos/base/system/msiexec/CMakeLists.txt index e8c8fba0571..71418cb6442 100644 --- a/reactos/base/system/msiexec/CMakeLists.txt +++ b/reactos/base/system/msiexec/CMakeLists.txt @@ -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) diff --git a/reactos/base/system/runonce/CMakeLists.txt b/reactos/base/system/runonce/CMakeLists.txt index a455a80074f..9519b135aad 100644 --- a/reactos/base/system/runonce/CMakeLists.txt +++ b/reactos/base/system/runonce/CMakeLists.txt @@ -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) diff --git a/reactos/base/system/winlogon/CMakeLists.txt b/reactos/base/system/winlogon/CMakeLists.txt index 079fe92eac6..795c5b9ecd7 100644 --- a/reactos/base/system/winlogon/CMakeLists.txt +++ b/reactos/base/system/winlogon/CMakeLists.txt @@ -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)