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