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