mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
c2d0d784c7
- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup - In the future, DO NOT under any circumstances branch another branch. This leads to merge problems! svn path=/branches/usb-bringup-trunk/; revision=55018
35 lines
738 B
CMake
35 lines
738 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.rc)
|
|
|
|
include_directories(
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${REACTOS_BINARY_DIR}/include/reactos)
|
|
|
|
set_rc_compiler()
|
|
|
|
add_executable(rapps ${SOURCE})
|
|
add_pch(rapps rapps.h)
|
|
set_module_type(rapps win32gui UNICODE)
|
|
target_link_libraries(rapps uuid)
|
|
|
|
add_importlibs(rapps advapi32 comctl32 gdi32 urlmon user32 shell32 shlwapi msvcrt kernel32 ntdll)
|
|
add_dependencies(rapps rappsmsg)
|
|
add_message_headers(ANSI rappsmsg.mc)
|
|
add_cd_file(TARGET rapps DESTINATION reactos/system32 FOR all)
|