mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
60 lines
1.4 KiB
CMake
60 lines
1.4 KiB
CMake
|
|
remove_definitions(-D_WIN32_WINNT=0x502 -DWINVER=0x502)
|
|
add_definitions(-D_WIN32_WINNT=0x600 -DWINVER=0x600)
|
|
|
|
add_definitions(
|
|
-D__WINESRC__
|
|
-D__ROS_LONG64__
|
|
-D_WINE
|
|
-D_CRYPT32_)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
|
spec2def(crypt32.dll crypt32.spec ADD_IMPORTLIB)
|
|
|
|
list(APPEND SOURCE
|
|
base64.c
|
|
cert.c
|
|
chain.c
|
|
collectionstore.c
|
|
context.c
|
|
crl.c
|
|
ctl.c
|
|
decode.c
|
|
encode.c
|
|
filestore.c
|
|
main.c
|
|
message.c
|
|
msg.c
|
|
object.c
|
|
oid.c
|
|
proplist.c
|
|
protectdata.c
|
|
provstore.c
|
|
regstore.c
|
|
rootstore.c
|
|
serialize.c
|
|
sip.c
|
|
store.c
|
|
str.c)
|
|
|
|
list(APPEND PCH_SKIP_SOURCE
|
|
${CMAKE_CURRENT_BINARY_DIR}/crypt32_stubs.c)
|
|
|
|
add_library(crypt32 MODULE
|
|
${SOURCE}
|
|
${PCH_SKIP_SOURCE}
|
|
crypt32.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/crypt32.def)
|
|
|
|
if(MSVC)
|
|
# Disable warning C4090: 'function': different 'const' qualifiers
|
|
# Disable warning C4312: 'type cast': conversion from 'unsigned int' to 'void *' of greater size
|
|
target_compile_options(crypt32 PRIVATE /wd4090 /wd4312)
|
|
endif()
|
|
|
|
set_module_type(crypt32 win32dll)
|
|
target_link_libraries(crypt32 wine ${PSEH_LIB} oldnames)
|
|
add_delay_importlibs(crypt32 cryptnet)
|
|
add_importlibs(crypt32 bcrypt user32 advapi32 advapi32_vista msvcrt kernel32 ntdll)
|
|
add_pch(crypt32 precomp.h "${PCH_SKIP_SOURCE}")
|
|
add_cd_file(TARGET crypt32 DESTINATION reactos/system32 FOR all)
|