2014-05-17 14:06:12 +00:00
|
|
|
|
|
|
|
add_definitions(-D__WINESRC__)
|
2016-04-20 12:36:25 +00:00
|
|
|
include_directories(BEFORE ${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
2014-05-17 14:06:12 +00:00
|
|
|
spec2def(winscard.dll winscard.spec)
|
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
winscard.c
|
|
|
|
stubs.c
|
|
|
|
precomp.h
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/winscard_stubs.c)
|
|
|
|
|
|
|
|
add_library(winscard SHARED
|
|
|
|
${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)
|