mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
81bdf4e360
These are required by latest mingw-w64 stl and we are mixing this with our crt headers. Define _CRT_NO_POSIX_ERROR_CODES in all modules that define their own constants.
39 lines
1,016 B
CMake
39 lines
1,016 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
|
|
-D_CRT_NO_POSIX_ERROR_CODES)
|
|
|
|
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 MODULE
|
|
${SOURCE}
|
|
iphlpapi.rc
|
|
iphlpapi_fakestubs.c
|
|
iphlpapi.spec
|
|
${CMAKE_CURRENT_BINARY_DIR}/iphlpapi.def)
|
|
|
|
set_module_type(iphlpapi win32dll UNICODE)
|
|
target_link_libraries(iphlpapi wine tdilib)
|
|
add_importlibs(iphlpapi dhcpcsvc advapi32 psapi ws2_32 msvcrt kernel32 ntdll)
|
|
add_pch(iphlpapi iphlpapi_private.h SOURCE)
|
|
add_cd_file(TARGET iphlpapi DESTINATION reactos/system32 FOR all)
|