2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
include_directories(BEFORE .)
|
|
|
|
|
2023-03-14 03:22:23 +00:00
|
|
|
if(DBG)
|
|
|
|
add_definitions(-D_DEBUG=1)
|
|
|
|
endif()
|
|
|
|
|
2011-05-16 13:12:07 +00:00
|
|
|
list(APPEND SOURCE
|
|
|
|
about.c
|
|
|
|
childwnd.c
|
|
|
|
edit.c
|
|
|
|
error.c
|
|
|
|
find.c
|
|
|
|
framewnd.c
|
|
|
|
hexedit.c
|
|
|
|
listview.c
|
|
|
|
main.c
|
|
|
|
regedit.c
|
|
|
|
regproc.c
|
|
|
|
security.c
|
2012-03-28 08:23:15 +00:00
|
|
|
settings.c
|
2011-05-16 13:12:07 +00:00
|
|
|
treeview.c
|
2023-08-30 12:43:09 +00:00
|
|
|
txtproc.c
|
2014-02-08 18:13:52 +00:00
|
|
|
regedit.h)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
2015-06-17 17:20:29 +00:00
|
|
|
file(GLOB regedit_rc_deps res/*.*)
|
|
|
|
add_rc_deps(regedit.rc ${regedit_rc_deps})
|
2014-02-08 18:13:52 +00:00
|
|
|
add_executable(regedit ${SOURCE} regedit.rc)
|
2011-09-03 19:11:44 +00:00
|
|
|
set_module_type(regedit win32gui UNICODE)
|
2022-11-02 18:02:14 +00:00
|
|
|
target_link_libraries(regedit uuid wine)
|
2017-07-30 14:04:44 +00:00
|
|
|
add_importlibs(regedit user32 gdi32 advapi32 ole32 shell32 comctl32 comdlg32 shlwapi msvcrt kernel32 ntdll)
|
2014-02-08 18:13:52 +00:00
|
|
|
add_pch(regedit regedit.h SOURCE)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET regedit DESTINATION reactos FOR all)
|
2020-11-25 18:52:30 +00:00
|
|
|
add_subdirectory(clb)
|