From c1fa5b358d8cbe601754ef5ea4b695d895a34f62 Mon Sep 17 00:00:00 2001
From: Torre Zuk <42548444+TorreZuk@users.noreply.github.com>
Date: Tue, 28 Nov 2023 09:02:43 -0700
Subject: [PATCH] fix for newer windows vcpkg msgpack (#1827)

---
 Tensile/Source/lib/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Tensile/Source/lib/CMakeLists.txt b/Tensile/Source/lib/CMakeLists.txt
index f8cc527c83..d3f4b697fb 100644
--- a/tensile/Tensile/Source/lib/CMakeLists.txt
+++ b/tensile/Tensile/Source/lib/CMakeLists.txt
@@ -98,7 +98,7 @@ if(TENSILE_USE_LLVM OR TENSILE_USE_MSGPACK)
 endif()
 
 if(TENSILE_USE_MSGPACK)
-    find_package(msgpack REQUIRED)
+    find_package(msgpack REQUIRED NAMES msgpack msgpack-c)
     target_compile_definitions(TensileHost PUBLIC -DTENSILE_MSGPACK=1)
 
     if(TARGET msgpackc-cxx)
