https://git.reactos.org/?p=reactos.git;a=commitdiff;h=1a41e62073ffe46d599cb5...
commit 1a41e62073ffe46d599cb5b130a751c92b3d5ab8 Author: Oleg Dubinskiy oleg.dubinskij2013@yandex.ua AuthorDate: Wed Nov 25 20:52:30 2020 +0200 Commit: Mark Jansen mark.jansen@reactos.org CommitDate: Tue Jun 14 22:48:06 2022 +0200
[CLB] Enable the dll Required by MS Regedit. It works as well with our clb.dll. Now we lack only ulib.dll. CORE-17385 --- base/applications/regedit/CMakeLists.txt | 2 +- base/applications/regedit/clb/CMakeLists.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/base/applications/regedit/CMakeLists.txt b/base/applications/regedit/CMakeLists.txt index fdfe5c4d73b..802acfe549b 100644 --- a/base/applications/regedit/CMakeLists.txt +++ b/base/applications/regedit/CMakeLists.txt @@ -26,4 +26,4 @@ target_link_libraries(regedit uuid) add_importlibs(regedit user32 gdi32 advapi32 ole32 shell32 comctl32 comdlg32 shlwapi msvcrt kernel32 ntdll) add_pch(regedit regedit.h SOURCE) add_cd_file(TARGET regedit DESTINATION reactos FOR all) -#add_subdirectory(clb) +add_subdirectory(clb) diff --git a/base/applications/regedit/clb/CMakeLists.txt b/base/applications/regedit/clb/CMakeLists.txt index ae01afcf05c..87f8ffb7d62 100644 --- a/base/applications/regedit/clb/CMakeLists.txt +++ b/base/applications/regedit/clb/CMakeLists.txt @@ -8,3 +8,4 @@ add_library(clb MODULE
set_module_type(clb win32dll UNICODE) add_importlibs(clb user32 comctl32 msvcrt kernel32 ntdll) +add_cd_file(TARGET clb DESTINATION reactos/system32 FOR all)