2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
${REACTOS_SOURCE_DIR}/include/reactos/wine
|
|
|
|
${REACTOS_SOURCE_DIR}/dll/win32/dhcpcsvc/include
|
|
|
|
${REACTOS_SOURCE_DIR}/lib/tdilib)
|
|
|
|
|
2012-03-07 21:21:27 +00:00
|
|
|
spec2def(iphlpapi.dll iphlpapi.spec ADD_IMPORTLIB)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
dhcp_reactos.c
|
|
|
|
ifenum_reactos.c
|
|
|
|
ipstats_reactos.c
|
|
|
|
iphlpapi_main.c
|
|
|
|
media.c
|
|
|
|
registry.c
|
|
|
|
resinfo_reactos.c
|
|
|
|
route_reactos.c
|
|
|
|
iphlpapi.rc
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/iphlpapi_stubs.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/iphlpapi.def)
|
|
|
|
|
|
|
|
add_library(iphlpapi SHARED ${SOURCE})
|
|
|
|
|
2011-09-03 19:11:44 +00:00
|
|
|
set_module_type(iphlpapi win32dll UNICODE)
|
2011-05-16 13:12:07 +00:00
|
|
|
target_link_libraries(iphlpapi wine tdilib)
|
2012-02-11 16:59:10 +00:00
|
|
|
add_importlibs(iphlpapi icmp dhcpcsvc advapi32 ws2_32 msvcrt kernel32 ntdll)
|
2011-08-11 15:16:48 +00:00
|
|
|
add_pch(iphlpapi iphlpapi_private.h)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET iphlpapi DESTINATION reactos/system32 FOR all)
|
2012-03-07 21:21:27 +00:00
|
|
|
|