reactos/base/applications/taskmgr/CMakeLists.txt
Joachim Henze 2f9b2df3d0 [0.4.11][TASKMGR] Backport commits id-ID and 'Remove Debug Channels' CORE-18057
by picking the following commits:
0.4.15-dev-413-g ed7196d964 [TASKMGR] Remove 'Debug Channels' feature, which is Wine-specific
0.4.15-dev-2488-g fd4d8f550c [TASKMGR] id-ID.rc, just the single line in this module
2022-02-27 22:48:32 +01:00

30 lines
645 B
CMake

list(APPEND SOURCE
about.c
affinity.c
applpage.c
column.c
debug.c
endproc.c
graph.c
graphctl.c
optnmenu.c
perfdata.c
perfpage.c
priority.c
proclist.c
procpage.c
run.c
shutdown.c
taskmgr.c
trayicon.c
precomp.h)
file(GLOB taskmgr_rc_deps res/*.*)
add_rc_deps(taskmgr.rc ${taskmgr_rc_deps})
add_executable(taskmgr ${SOURCE} taskmgr.rc)
set_module_type(taskmgr win32gui UNICODE)
add_importlibs(taskmgr advapi32 user32 gdi32 shell32 shlwapi comctl32 msvcrt kernel32 ntdll)
add_pch(taskmgr precomp.h SOURCE)
add_cd_file(TARGET taskmgr DESTINATION reactos/system32 FOR all)