mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
[CMD][EXPLORER] Properly track resource file dependencies. CORE-9806
svn path=/trunk/; revision=68241
This commit is contained in:
parent
b8911d58ce
commit
d958941422
2 changed files with 3 additions and 0 deletions
|
@ -67,6 +67,7 @@ list(APPEND SOURCE
|
|||
window.c
|
||||
precomp.h)
|
||||
|
||||
add_rc_deps(cmd.rc ${CMAKE_CURRENT_SOURCE_DIR}/res/terminal.ico)
|
||||
add_executable(cmd ${SOURCE} cmd.rc)
|
||||
target_link_libraries(cmd wine)
|
||||
set_module_type(cmd win32cui UNICODE)
|
||||
|
|
|
@ -23,6 +23,8 @@ list(APPEND SOURCE
|
|||
util.cpp
|
||||
precomp.h)
|
||||
|
||||
file(GLOB explorer_rc_deps res/*.*)
|
||||
add_rc_deps(explorer.rc ${explorer_rc_deps})
|
||||
add_executable(explorer ${SOURCE} explorer.rc)
|
||||
target_link_libraries(explorer uuid atlnew wine)
|
||||
set_module_type(explorer win32gui UNICODE)
|
||||
|
|
Loading…
Reference in a new issue