Files
reactos/base/applications/network/route/CMakeLists.txt
T
Timo Kreuzer b13e568d99 [CMAKE] Remove global _CRT_NON_CONFORMING_SWPRINTFS
Instead define it only in 3rd-party code where required.
Most of these will go away with future wine-syncs.
2026-05-07 06:27:58 +00:00

8 lines
343 B
CMake

add_executable(route route.c route.rc)
set_module_type(route win32cui UNICODE)
target_compile_definitions(route PRIVATE _CRT_NON_CONFORMING_SWPRINTFS)
target_link_libraries(route conutils)
add_importlibs(route ws2_32 iphlpapi advapi32 msvcrt kernel32 ntdll) ## ntdll for RtlIpv*
add_cd_file(TARGET route DESTINATION reactos/system32 FOR all)