reactos/dll/win32/httpapi/CMakeLists.txt
Sylvain Petreolle e141d4c363 [CMAKE]
Stubs: Fix some win32 modules.

svn path=/branches/cmake-bringup/; revision=49871
2010-11-29 23:08:38 +00:00

21 lines
402 B
CMake

add_definitions(-D__WINESRC__)
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
spec2def(httpapi.dll httpapi.spec)
list(APPEND SOURCE
httpapi_main.c
${CMAKE_CURRENT_BINARY_DIR}/httpapi.def)
add_library(httpapi SHARED ${SOURCE})
set_module_type(httpapi win32dll)
target_link_libraries(httpapi wine)
add_importlibs(httpapi msvcrt kernel32 ntdll)
add_cab_target(httpapi 1)