File 0001-fix-msgpack-detection.patch of Package veles
From 94ab6abcdb2d623253b657e17f702278570d8665 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Klaus=20K=C3=A4mpf?= <kkaempf@gmail.com>
Date: Wed, 26 Feb 2025 14:16:49 +0100
Subject: [PATCH 1/4] fix msgpack detection
---
CMakeLists.txt | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 4e8b854..4e1dcaa 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -28,7 +28,8 @@ endif()
include("cmake/googletest.cmake")
include("cmake/qt.cmake")
include("cmake/zlib.cmake")
-include("cmake/msgpack.cmake")
+find_package(msgpack-cxx REQUIRED)
+add_custom_target(msgpack-c ${SIX_LOC})
include("cmake/cppgen.cmake")
include("cmake/server.cmake")
include("cmake/openssl.cmake")
--
2.51.1