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