reactos/dll/win32/wshtcpip/CMakeLists.txt
Amine Khaldi 0281bf63e6 [CMAKE]
- Improve the unicode situation.
- Apply a consistent formatting.
- Improve the unicode modules we have so far.
- Get rid of some rbuildism.
- Overall improvements.

svn path=/branches/cmake-bringup/; revision=48964
2010-10-02 16:09:32 +00:00

18 lines
487 B
CMake

set_unicode()
include_directories(${REACTOS_SOURCE_DIR}/lib/tdilib)
spec2def(wshtcpip ${CMAKE_CURRENT_SOURCE_DIR}/wshtcpip.spec ${CMAKE_CURRENT_BINARY_DIR}/wshtcpip.def)
add_library(wshtcpip SHARED wshtcpip.c wshtcpip.rc)
set_target_properties(wshtcpip PROPERTIES LINK_FLAGS "-Wl,-entry,0")
target_link_libraries(wshtcpip
${CMAKE_CURRENT_BINARY_DIR}/wshtcpip.def
tdilib)
add_importlibs(wshtcpip kernel32 ws2_32 kernel32 ntdll)
add_dependencies(wshtcpip wshtcpip_def psdk)