mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 11:56:26 +00:00
4f0b8d3db0
svn path=/branches/ntvdm/; revision=59241
31 lines
804 B
CMake
31 lines
804 B
CMake
|
|
|
|
include_directories(
|
|
${REACTOS_SOURCE_DIR}/include/reactos/wine
|
|
${REACTOS_SOURCE_DIR}/dll/win32/dhcpcsvc/include
|
|
${REACTOS_SOURCE_DIR}/lib/tdilib)
|
|
|
|
spec2def(iphlpapi.dll iphlpapi.spec ADD_IMPORTLIB)
|
|
|
|
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})
|
|
|
|
set_module_type(iphlpapi win32dll UNICODE)
|
|
target_link_libraries(iphlpapi wine tdilib)
|
|
add_importlibs(iphlpapi icmp dhcpcsvc advapi32 ws2_32 msvcrt kernel32 ntdll)
|
|
add_pch(iphlpapi iphlpapi_private.h)
|
|
add_cd_file(TARGET iphlpapi DESTINATION reactos/system32 FOR all)
|
|
|