* Sync up to trunk head (r64959).
[reactos.git] / dll / win32 / httpapi / CMakeLists.txt
1
2 add_definitions(-D__WINESRC__)
3 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
4 spec2def(httpapi.dll httpapi.spec)
5
6 list(APPEND SOURCE
7 httpapi_main.c
8 ${CMAKE_CURRENT_BINARY_DIR}/httpapi_stubs.c
9 ${CMAKE_CURRENT_BINARY_DIR}/httpapi.def)
10
11 add_library(httpapi SHARED ${SOURCE})
12 set_module_type(httpapi win32dll)
13 target_link_libraries(httpapi wine)
14 add_importlibs(httpapi msvcrt kernel32 ntdll)
15 add_cd_file(TARGET httpapi DESTINATION reactos/system32 FOR all)