reactos/dll/win32/iphlpapi/CMakeLists.txt
Jérôme Gardou 23373acbb9 [CMAKE] Use modules instead of shared libraries
There is no need to compile our DLLs as shared libraries since we are
managing symbols exports and imports through spec files.

On my system, this reduces the configure-time by a factor of two.
2019-04-06 17:43:38 +02:00

37 lines
978 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 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)