Create this branch to work on loading of different Kernel-Debugger DLL providers...
[reactos.git] / base / applications / rapps / CMakeLists.txt
1
2 list(APPEND SOURCE
3 aboutdlg.c
4 available.c
5 installdlg.c
6 installed.c
7 listview.c
8 loaddlg.c
9 misc.c
10 parser.c
11 richedit.c
12 settingsdlg.c
13 splitter.c
14 statusbar.c
15 toolbar.c
16 treeview.c
17 winmain.c
18 rapps.rc)
19
20 include_directories(
21 ${CMAKE_CURRENT_BINARY_DIR}
22 ${REACTOS_BINARY_DIR}/include/reactos)
23
24 add_executable(rapps ${SOURCE})
25 add_pch(rapps rapps.h)
26 set_module_type(rapps win32gui UNICODE)
27 target_link_libraries(rapps uuid)
28 add_importlibs(rapps advapi32 comctl32 gdi32 urlmon user32 shell32 shlwapi ole32 msvcrt kernel32 ntdll)
29 add_dependencies(rapps rappsmsg)
30 add_message_headers(ANSI rappsmsg.mc)
31 add_cd_file(TARGET rapps DESTINATION reactos/system32 FOR all)