mirror of
https://github.com/reactos/reactos.git
synced 2025-01-12 09:07:54 +00:00
25 lines
535 B
Text
25 lines
535 B
Text
|
|
||
|
add_definitions(-D__WINESRC__)
|
||
|
|
||
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||
|
|
||
|
spec2def(winhttp ${CMAKE_CURRENT_SOURCE_DIR}/winhttp.spec ${CMAKE_CURRENT_BINARY_DIR}/winhttp.def)
|
||
|
|
||
|
add_library(winhttp SHARED
|
||
|
cookie.c
|
||
|
handle.c
|
||
|
main.c
|
||
|
net.c
|
||
|
request.c
|
||
|
session.c
|
||
|
url.c)
|
||
|
|
||
|
set_module_type(winhttp win32dll)
|
||
|
|
||
|
target_link_libraries(winhttp
|
||
|
${CMAKE_CURRENT_BINARY_DIR}/winhttp.def
|
||
|
wine)
|
||
|
|
||
|
add_importlibs(winhttp msvcrt shlwapi wininet ws2_32 ntdll)
|
||
|
add_dependencies(winhttp winhttp_def psdk)
|