[USB-BRINGUP-TRUNK]
[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 treeview.c
20 regedit.rc)
21
22 add_executable(regedit ${SOURCE})
23
24 set_module_type(regedit win32gui UNICODE)
25
26 target_link_libraries(regedit uuid)
27
28 add_importlibs(regedit user32 gdi32 advapi32 ole32 shell32 comctl32 comdlg32 shlwapi msvcrt kernel32)
29
30 add_pch(regedit regedit.h)
31
32 #add_subdirectory(clb)
33
34 add_cd_file(TARGET regedit DESTINATION reactos FOR all)