mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
8bd9450da8
Wine's implementation relies on http.sys driver, which we don't have anyway. Function declarations are taken from Wine 5.7 CORE-16963
12 lines
333 B
CMake
12 lines
333 B
CMake
|
|
spec2def(httpapi.dll httpapi.spec)
|
|
|
|
list(APPEND SOURCE
|
|
${CMAKE_CURRENT_BINARY_DIR}/httpapi_stubs.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/httpapi.def)
|
|
|
|
add_library(httpapi MODULE ${SOURCE})
|
|
set_module_type(httpapi win32dll)
|
|
add_importlibs(httpapi msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET httpapi DESTINATION reactos/system32 FOR all)
|