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