mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 06:09:58 +00:00
34 lines
929 B
CMake
34 lines
929 B
CMake
|
|
include_directories(
|
|
${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine
|
|
${REACTOS_SOURCE_DIR}/dll/win32/dhcpcsvc/include
|
|
${REACTOS_SOURCE_DIR}/sdk/lib/tdilib)
|
|
|
|
spec2def(iphlpapi.dll iphlpapi.spec ADD_IMPORTLIB)
|
|
|
|
add_definitions(-DGetAdaptersAddressesV2)
|
|
list(APPEND SOURCE
|
|
address.c
|
|
dhcp_reactos.c
|
|
icmp.c
|
|
ifenum_reactos.c
|
|
ipstats_reactos.c
|
|
iphlpapi_reactos.c
|
|
iphlpapi_main.c
|
|
media.c
|
|
registry.c
|
|
resinfo_reactos.c
|
|
route_reactos.c
|
|
iphlpapi_private.h
|
|
${CMAKE_CURRENT_BINARY_DIR}/iphlpapi_stubs.c)
|
|
|
|
add_library(iphlpapi SHARED
|
|
${SOURCE}
|
|
iphlpapi.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/iphlpapi.def)
|
|
|
|
set_module_type(iphlpapi win32dll UNICODE)
|
|
target_link_libraries(iphlpapi wine tdilib)
|
|
add_importlibs(iphlpapi dhcpcsvc advapi32 ws2_32 msvcrt kernel32 ntdll)
|
|
add_pch(iphlpapi iphlpapi_private.h SOURCE)
|
|
add_cd_file(TARGET iphlpapi DESTINATION reactos/system32 FOR all)
|