reactos/base/applications/regedit/clb/CMakeLists.txt
Oleg Dubinskiy 1a41e62073 [CLB] Enable the dll
Required by MS Regedit. It works as well with our clb.dll.
Now we lack only ulib.dll.
CORE-17385
2022-06-14 22:48:06 +02:00

12 lines
272 B
CMake

spec2def(clb.dll clb.spec)
add_library(clb MODULE
clb.c
clb.rc
${CMAKE_CURRENT_BINARY_DIR}/clb.def)
set_module_type(clb win32dll UNICODE)
add_importlibs(clb user32 comctl32 msvcrt kernel32 ntdll)
add_cd_file(TARGET clb DESTINATION reactos/system32 FOR all)