mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 10:14:44 +00:00
19 lines
No EOL
426 B
CMake
19 lines
No EOL
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) |