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