mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 20:02:55 +00:00
15 lines
378 B
CMake
15 lines
378 B
CMake
|
|
list(APPEND SOURCE
|
|
clipbrd.c
|
|
cliputils.c
|
|
fileutils.c
|
|
scrollutils.c
|
|
winutils.c
|
|
precomp.h)
|
|
|
|
add_executable(clipbrd ${SOURCE} clipbrd.rc)
|
|
add_pch(clipbrd precomp.h SOURCE)
|
|
set_module_type(clipbrd win32gui UNICODE)
|
|
add_importlibs(clipbrd hhctrl user32 gdi32 comdlg32 shell32 msvcrt kernel32)
|
|
add_cd_file(TARGET clipbrd DESTINATION reactos/system32 FOR all)
|