mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +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.
15 lines
425 B
CMake
15 lines
425 B
CMake
|
|
spec2def(shsvcs.dll shsvcs.spec ADD_IMPORTLIB)
|
|
|
|
add_library(shsvcs MODULE
|
|
shsvcs.c
|
|
thmsvc.c
|
|
thmserver.c
|
|
shsvcs.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/shsvcs_stubs.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/shsvcs.def)
|
|
|
|
set_module_type(shsvcs win32dll UNICODE)
|
|
target_link_libraries(shsvcs wine)
|
|
add_importlibs(shsvcs uxtheme advapi32 msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET shsvcs DESTINATION reactos/system32 FOR all)
|