reactos/base/applications/rapps/CMakeLists.txt
Amine Khaldi 527f2f9057 [SHELL/EXPERIMENTS]
* Create a branch for some evul shell experiments.

svn path=/branches/shell-experiments/; revision=61927
2014-02-02 19:37:27 +00:00

32 lines
731 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)
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 wininet user32 shell32 shlwapi ole32 msvcrt kernel32 ntdll)
add_dependencies(rapps rappsmsg)
add_message_headers(ANSI rappsmsg.mc)
add_cd_file(TARGET rapps DESTINATION reactos/system32 FOR all)