32 lines
913 B
Diff
32 lines
913 B
Diff
From 850f24c6366abda30bfd77734b90330b8809d306 Mon Sep 17 00:00:00 2001
|
|
From: Andreas Schneider <asn@samba.org>
|
|
Date: Fri, 17 Feb 2023 17:51:27 +0100
|
|
Subject: [PATCH] cmake: Fix cmocka >= 1.1.6 find_package() in CONFIG mode
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=utf8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Signed-off-by: Andreas Schneider <asn@samba.org>
|
|
Reviewed-by: Pavel Filipenský <pfilipensky@samba.org>
|
|
---
|
|
tests/CMakeLists.txt | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
|
|
index 635e86e..68e050e 100644
|
|
--- a/tests/CMakeLists.txt
|
|
+++ b/tests/CMakeLists.txt
|
|
@@ -1,5 +1,9 @@
|
|
project(tests C)
|
|
|
|
+if (TARGET cmocka::cmocka)
|
|
+ set(CMOCKA_LIBRARY cmocka::cmocka)
|
|
+endif()
|
|
+
|
|
add_library(uwrap_fake_socket_wrapper SHARED uwrap_fake_socket_wrapper.c)
|
|
target_compile_options(uwrap_fake_socket_wrapper
|
|
PRIVATE
|
|
--
|
|
2.34.1
|
|
|