1
2include_directories(BEFORE .)
3
4list(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
21file(GLOB regedit_rc_deps res/*.*)
22add_rc_deps(regedit.rc ${regedit_rc_deps})
23add_executable(regedit ${SOURCE} regedit.rc)
24set_module_type(regedit win32gui UNICODE)
25target_link_libraries(regedit uuid)
26add_importlibs(regedit user32 gdi32 advapi32 ole32 shell32 comctl32 comdlg32 shlwapi msvcrt kernel32 ntdll)
27add_pch(regedit regedit.h SOURCE)
28add_cd_file(TARGET regedit DESTINATION reactos FOR all)
29#add_subdirectory(clb)
30