mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
22 lines
570 B
Text
22 lines
570 B
Text
![]() |
|
||
|
add_definitions(-D__WINESRC__)
|
||
|
include_directories(${REACTOS_SOURCE_DIR}/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 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)
|