reactos/dll/win32/wshtcpip/CMakeLists.txt
Sylvain Petreolle ac1ef420cd [CMAKE]
Add dlls to bootcd.
Fix hhctrl build.

svn path=/branches/cmake-bringup/; revision=49482
2010-11-05 13:25:28 +00:00

19 lines
426 B
CMake

set_unicode()
include_directories(${REACTOS_SOURCE_DIR}/lib/tdilib)
add_library(wshtcpip SHARED wshtcpip.c wshtcpip.rc wshtcpip.def)
if(NOT MSVC)
set_source_files_properties(wshtcpip.def PROPERTIES EXTERNAL_OBJECT TRUE)
endif()
set_entrypoint(wshtcpip 0)
target_link_libraries(wshtcpip tdilib)
add_importlibs(wshtcpip ws2_32 kernel32 ntdll)
add_dependencies(wshtcpip psdk buildno_header)
add_cab_target(wshtcpip 1)