From a44e3659586931621e6ebf5bc036586e98dace20 Mon Sep 17 00:00:00 2001 From: Simon Jackson Date: Thu, 2 Apr 2026 09:00:40 +0100 Subject: [PATCH] fix(cpp): add missing ARM64 PCH create/use overrides in RDPWrap.vcxproj stdafx.cpp had PrecompiledHeader=Create for Debug|Win32, Debug|x64, Release|Win32, Release|x64 but not Release|ARM64. MSBuild fell through to the ItemDefinitionGroup default of Use, tried to open a PCH that was never generated, and all four TUs failed with C1083. dllmain.cpp also lacked the empty-PrecompiledHeader override for Release|ARM64 (disabling PCH for that TU), inconsistent with the other three platforms where it deliberately does not use the PCH. --- src-x86-x64-Fusix/RDPWrap.vcxproj | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src-x86-x64-Fusix/RDPWrap.vcxproj b/src-x86-x64-Fusix/RDPWrap.vcxproj index 2e8eca1..0f10868 100644 --- a/src-x86-x64-Fusix/RDPWrap.vcxproj +++ b/src-x86-x64-Fusix/RDPWrap.vcxproj @@ -220,6 +220,9 @@ + false + + @@ -228,6 +231,7 @@ Create Create Create + Create