mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 13:33:42 +00:00
23373acbb9
There is no need to compile our DLLs as shared libraries since we are managing symbols exports and imports through spec files. On my system, this reduces the configure-time by a factor of two.
12 lines
323 B
CMake
12 lines
323 B
CMake
|
|
spec2def(kbsdll.dll kbsdll.spec)
|
|
|
|
list(APPEND SOURCE
|
|
kbsdll.c
|
|
kbsdll.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/kbsdll.def)
|
|
|
|
add_library(kbsdll MODULE ${SOURCE})
|
|
set_module_type(kbsdll win32dll UNICODE)
|
|
add_importlibs(kbsdll user32 comctl32 msvcrt kernel32)
|
|
add_cd_file(TARGET kbsdll DESTINATION reactos/system32 FOR all)
|