From ec1137dfbd90972319ee1432057e75c8ea88ced1 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 9 Oct 2022 15:19:47 -0500 Subject: [PATCH] cmake: Apply CETCOMPAT fix from ef988fe1 to tests --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 9f372bc77..ebea6deff 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -51,7 +51,7 @@ if(WINDOWS) endif() # CET support was added in VS 16.7 - if(MSVC_VERSION GREATER 1926 AND NOT CMAKE_GENERATOR_PLATFORM MATCHES ARM) + if(MSVC_VERSION GREATER 1926 AND CMAKE_GENERATOR_PLATFORM MATCHES "Win32|x64") link_libraries(-CETCOMPAT) endif()