From 1e20219ecddc64cf23e04f5cb990c49e1b0074c3 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sat, 21 Oct 2023 20:01:14 -0400 Subject: [PATCH] Add separate ASM file for XGETBV64 and CPUID64 to Visual Studio cryptdll project (GH #1240) Also see the comment in Commit 043208515799, where OgreTransporter made a comment about the deprecated cryptdll.vcxproj project. --- cryptdll.vcxproj | 5 +++++ cryptdll.vcxproj.filters | 3 +++ cryptlib.vcxproj | 4 ++-- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/cryptdll.vcxproj b/cryptdll.vcxproj index 5fbee2111..be4d2ec37 100644 --- a/cryptdll.vcxproj +++ b/cryptdll.vcxproj @@ -173,6 +173,11 @@ ml64.exe /c /nologo /D_M_X64 /W3 /Zi /Fo"$(IntDir)x64dll.obj" "%(FullPath)" $(IntDir)x64dll.obj;%(Outputs) + + Building and assembling cpuid64.asm + ml64.exe /c /nologo /D_M_X64 /W3 /Zi /Fo"$(IntDir)cpuid64.obj" "%(FullPath)" + $(IntDir)cpuid64.obj;%(Outputs) + diff --git a/cryptdll.vcxproj.filters b/cryptdll.vcxproj.filters index 4b3d1a861..d8f026bb4 100644 --- a/cryptdll.vcxproj.filters +++ b/cryptdll.vcxproj.filters @@ -449,5 +449,8 @@ Source Files + + Source Files + diff --git a/cryptlib.vcxproj b/cryptlib.vcxproj index 91dd1c171..d4d3a79d7 100644 --- a/cryptlib.vcxproj +++ b/cryptlib.vcxproj @@ -368,8 +368,8 @@ - - Building and Assembling cpuid64.asm + + Building and assembling cpuid64.asm ml64.exe /c /nologo /D_M_X64 /W3 /Zi /Fo"$(IntDir)cpuid64.obj" "%(FullPath)" $(IntDir)cpuid64.obj;%(Outputs)