[TCPIP]
[reactos.git] / reactos / base / applications / rapps / CMakeLists.txt
1
2 set_unicode()
3
4 list(APPEND SOURCE
5 aboutdlg.c
6 available.c
7 installdlg.c
8 installed.c
9 listview.c
10 loaddlg.c
11 misc.c
12 parser.c
13 richedit.c
14 settingsdlg.c
15 splitter.c
16 statusbar.c
17 toolbar.c
18 treeview.c
19 winmain.c
20 rapps.rc)
21
22 include_directories(
23 ${CMAKE_CURRENT_BINARY_DIR}
24 ${REACTOS_BINARY_DIR}/include/reactos)
25
26 set_rc_compiler()
27
28 add_executable(rapps ${SOURCE})
29 add_pch(rapps rapps.h)
30 set_module_type(rapps win32gui)
31 target_link_libraries(rapps uuid)
32
33 add_importlibs(rapps advapi32 comctl32 gdi32 urlmon user32 shell32 shlwapi msvcrt kernel32 ntdll)
34 add_dependencies(rapps rappsmsg)
35 add_message_headers(rappsmsg.mc)
36 add_cd_file(TARGET rapps DESTINATION reactos/system32 FOR all)