reactos/dll/win32/httpapi/CMakeLists.txt
Amine Khaldi f4cc19c36a [CMAKE]
- Improve several modules.

svn path=/branches/cmake-bringup/; revision=50055
2010-12-17 21:54:56 +00:00

18 lines
399 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)