reactos/dll/win32/crypt32/CMakeLists.txt
David Quintana 73d72624b0 Sync with trunk r63637.
svn path=/branches/shell-experiments/; revision=63640
2014-06-23 23:28:38 +00:00

49 lines
1,000 B
CMake

add_definitions(
-D__WINESRC__
-D_WINE
-D_CRYPT32_)
include_directories(${REACTOS_SOURCE_DIR}/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
crypt32_private.h)
add_library(crypt32 SHARED
${SOURCE}
crypt32.rc
${CMAKE_CURRENT_BINARY_DIR}/crypt32_stubs.c
${CMAKE_CURRENT_BINARY_DIR}/crypt32.def)
set_module_type(crypt32 win32dll)
target_link_libraries(crypt32 wine ${PSEH_LIB} oldnames)
add_importlibs(crypt32 user32 advapi32 shlwapi msvcrt kernel32 ntdll)
add_delay_importlibs(crypt32 cryptnet)
add_pch(crypt32 crypt32_private.h SOURCE)
add_cd_file(TARGET crypt32 DESTINATION reactos/system32 FOR all)