Synchronize with trunk's revision r57599.
[reactos.git] / base / applications / regedit / CMakeLists.txt
1
2 set_rc_compiler()
3
4 include_directories(BEFORE .)
5
6 list(APPEND SOURCE
7 about.c
8 childwnd.c
9 edit.c
10 error.c
11 find.c
12 framewnd.c
13 hexedit.c
14 listview.c
15 main.c
16 regedit.c
17 regproc.c
18 security.c
19 settings.c
20 treeview.c
21 regedit.rc)
22
23 add_executable(regedit ${SOURCE})
24
25 set_module_type(regedit win32gui UNICODE)
26
27 target_link_libraries(regedit uuid)
28
29 add_importlibs(regedit user32 gdi32 advapi32 ole32 shell32 comctl32 comdlg32 shlwapi msvcrt kernel32)
30
31 add_pch(regedit regedit.h)
32
33 #add_subdirectory(clb)
34
35 add_cd_file(TARGET regedit DESTINATION reactos FOR all)