mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
35 lines
677 B
CMake
35 lines
677 B
CMake
|
|
set_unicode()
|
|
|
|
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.rc)
|
|
|
|
include_directories(
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${REACTOS_BINARY_DIR}/include/reactos)
|
|
|
|
set_rc_compiler()
|
|
|
|
add_executable(rapps ${SOURCE})
|
|
set_module_type(rapps win32gui)
|
|
target_link_libraries(rapps uuid)
|
|
|
|
add_importlibs(rapps advapi32 comctl32 gdi32 urlmon user32 shell32 shlwapi kernel32 msvcrt ntdll)
|
|
add_dependencies(rapps rappsmsg)
|
|
add_message_headers(rappsmsg.mc)
|
|
add_cab_target(rapps 1)
|