remove runners that failed explicitly

also https://learn.microsoft.com/en-us/cpp/build/reference/debug-generate-debug-info?view=msvc-170

use /DEBUG:FULL instead of FASTLINK as it is deprecated
This commit is contained in:
marauder2k7 2026-06-16 21:48:51 +01:00
parent 222f476f0e
commit 4062a1bbbd
3 changed files with 11 additions and 21 deletions

View file

@ -620,8 +620,8 @@ if (MSVC)
)
target_link_options(${TORQUE_APP_NAME} PRIVATE
$<$<CONFIG:Debug>:/DEBUG:FASTLINK /INCREMENTAL>
$<$<CONFIG:RelWithDebInfo>:/INCREMENTAL /DEBUG:FASTLINK /OPT:REF /OPT:ICF>
$<$<CONFIG:Debug>:/DEBUG:FULL /INCREMENTAL>
$<$<CONFIG:RelWithDebInfo>:/INCREMENTAL /DEBUG:FULL /OPT:REF /OPT:ICF>
$<$<CONFIG:Release>:/INCREMENTAL>
)