[CMAKE]
[reactos.git] / 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 set_module_type(rapps win32gui)
30 target_link_libraries(rapps uuid)
31
32 add_importlibs(rapps advapi32 comctl32 gdi32 urlmon user32 shell32 shlwapi kernel32 msvcrt ntdll)
33 add_dependencies(rapps rappsmsg)
34 add_message_headers(rappsmsg.mc)
35 add_cab_target(rapps 1)