mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +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.
31 lines
776 B
CMake
31 lines
776 B
CMake
|
|
include_directories(
|
|
${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine
|
|
${REACTOS_SOURCE_DIR}/sdk/include/reactos/libs/mbedtls)
|
|
|
|
|
|
add_definitions(-D__WINESRC__ -D_WINE)
|
|
spec2def(schannel.dll schannel.spec)
|
|
|
|
list(APPEND SOURCE
|
|
lsamode.c
|
|
schannel_mbedtls.c
|
|
schannel_main.c
|
|
schannel_wine.c
|
|
secur32_wine.c
|
|
usermode.c
|
|
stubs.c
|
|
precomp.h
|
|
${CMAKE_CURRENT_BINARY_DIR}/schannel_stubs.c)
|
|
|
|
add_library(schannel MODULE
|
|
${SOURCE}
|
|
version.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/schannel.def)
|
|
|
|
set_module_type(schannel win32dll)
|
|
target_link_libraries(schannel wine)
|
|
add_importlibs(schannel mbedtls crypt32 secur32 advapi32 msvcrt kernel32 ntdll)
|
|
add_pch(schannel precomp.h SOURCE)
|
|
add_cd_file(TARGET schannel DESTINATION reactos/system32 FOR all)
|