* Sync to trunk r63845.
[reactos.git] / dll / win32 / cryptdll / CMakeLists.txt
1
2 add_definitions(-D__WINESRC__)
3 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
4
5 spec2def(cryptdll.dll cryptdll.spec)
6
7 list(APPEND SOURCE
8 cryptdll.c
9 stubs.c
10 ${CMAKE_CURRENT_BINARY_DIR}/cryptdll.def)
11
12 add_library(cryptdll SHARED ${SOURCE})
13 set_module_type(cryptdll win32dll)
14 target_link_libraries(cryptdll wine)
15 add_importlibs(cryptdll advapi32 msvcrt kernel32 ntdll)
16 add_cd_file(TARGET cryptdll DESTINATION reactos/system32 FOR all)