You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-libs/cppzmq/files/cppzmq-4.9.0-disable-static...

22 lines
731 B

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 05001ad..c640fd7 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -21,7 +21,7 @@ if (NOT TARGET libzmq AND NOT TARGET libzmq-static)
message(FATAL_ERROR "ZeroMQ was not found, neither as a CMake package nor via pkg-config")
endif()
- if (ZeroMQ_FOUND AND NOT (TARGET libzmq OR TARGET libzmq-static))
+ if (ZeroMQ_FOUND AND NOT TARGET libzmq)
message(FATAL_ERROR "ZeroMQ version not supported!")
endif()
endif()
@@ -52,7 +52,6 @@ foreach (target cppzmq cppzmq-static)
endforeach()
target_link_libraries(cppzmq INTERFACE libzmq)
-target_link_libraries(cppzmq-static INTERFACE libzmq-static)
include(GNUInstallDirs)
include(CMakePackageConfigHelpers)