mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 10:14:44 +00:00

- Move more dlls with no stubs into using def files instead of spec files. svn path=/branches/cmake-bringup/; revision=49450
25 lines
511 B
CMake
25 lines
511 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
add_library(winhttp SHARED
|
|
cookie.c
|
|
handle.c
|
|
main.c
|
|
net.c
|
|
request.c
|
|
session.c
|
|
url.c
|
|
winhttp.def)
|
|
|
|
if(NOT MSVC)
|
|
set_source_files_properties(winhttp.def PROPERTIES EXTERNAL_OBJECT TRUE)
|
|
endif()
|
|
|
|
set_module_type(winhttp win32dll)
|
|
|
|
target_link_libraries(winhttp wine)
|
|
|
|
add_importlibs(winhttp shlwapi wininet ws2_32 msvcrt crypt32 advapi32 kernel32 ntdll)
|
|
|
|
add_cab_target(winhttp 1)
|