mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
27 lines
649 B
CMake
27 lines
649 B
CMake
|
|
list(APPEND SOURCE
|
|
aboutdlg.c
|
|
available.c
|
|
installdlg.c
|
|
installed.c
|
|
listview.c
|
|
loaddlg.c
|
|
misc.c
|
|
parser.c
|
|
richedit.c
|
|
settingsdlg.c
|
|
splitter.c
|
|
statusbar.c
|
|
toolbar.c
|
|
treeview.c
|
|
winmain.c
|
|
rapps.h)
|
|
|
|
add_executable(rapps ${SOURCE} rapps.rc)
|
|
set_module_type(rapps win32gui UNICODE)
|
|
target_link_libraries(rapps uuid)
|
|
add_importlibs(rapps advapi32 comctl32 gdi32 urlmon wininet user32 shell32 shlwapi ole32 msvcrt kernel32 ntdll)
|
|
add_pch(rapps rapps.h SOURCE)
|
|
add_dependencies(rapps rappsmsg)
|
|
add_message_headers(ANSI rappsmsg.mc)
|
|
add_cd_file(TARGET rapps DESTINATION reactos/system32 FOR all)
|