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.
22 lines
581 B
CMake
22 lines
581 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
include_directories(BEFORE ${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
|
spec2def(winscard.dll winscard.spec)
|
|
|
|
list(APPEND SOURCE
|
|
winscard.c
|
|
stubs.c
|
|
precomp.h
|
|
${CMAKE_CURRENT_BINARY_DIR}/winscard_stubs.c)
|
|
|
|
add_library(winscard MODULE
|
|
${SOURCE}
|
|
winscard.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/winscard.def)
|
|
|
|
set_module_type(winscard win32dll)
|
|
target_link_libraries(winscard wine)
|
|
add_importlibs(winscard msvcrt kernel32 ntdll)
|
|
add_pch(winscard precomp.h SOURCE)
|
|
add_cd_file(TARGET winscard DESTINATION reactos/system32 FOR all)
|