[TRANSLATION][APPLICATIONS] Use correct font name in Chinese resources, CORE-9566...
[reactos.git] / 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 file(GLOB regedit_rc_deps res/*.*)
22 add_rc_deps(regedit.rc ${regedit_rc_deps})
23 add_executable(regedit ${SOURCE} regedit.rc)
24 set_module_type(regedit win32gui UNICODE)
25 target_link_libraries(regedit uuid)
26 add_importlibs(regedit user32 gdi32 advapi32 ole32 shell32 comctl32 comdlg32 shlwapi msvcrt kernel32 ntdll)
27 add_pch(regedit regedit.h SOURCE)
28 add_cd_file(TARGET regedit DESTINATION reactos FOR all)
29 #add_subdirectory(clb)