From f82fddb809f48b62ec9d83a7b6f34e87cdd99872 Mon Sep 17 00:00:00 2001 From: Snider Date: Fri, 10 Oct 2025 13:18:11 +0100 Subject: [PATCH] Remove unused configure_file call for MSVC Deleted the configure_file invocation for Directory.Build.props in the MSVC-specific section of CMakeLists.txt, that forced job settings overriding build system settings. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f898ec73..08ec3bdc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -140,7 +140,7 @@ if(MSVC) endforeach() endif() include_directories(SYSTEM src/platform/msc) - configure_file(utils/Directory.Build.props.in ${CMAKE_BINARY_DIR}/Directory.Build.props) + else() set(ARCH default CACHE STRING "CPU to build for: -march value or default") if("${ARCH}" STREQUAL "default")