cppzmq libs

This commit is contained in:
milek7
2020-03-29 22:10:31 +02:00
parent 078cbdb71b
commit 09f442456f
7 changed files with 3463 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
find_path(cppzmq_INCLUDE_DIR zmq.hpp)
find_library(cppzmq_LIBRARY zmq)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(cppzmq DEFAULT_MSG cppzmq_LIBRARY cppzmq_INCLUDE_DIR)
if(cppzmq_FOUND)
set(cppzmq_LIBRARIES ${cppzmq_LIBRARY})
set(cppzmq_INCLUDE_DIRS ${cppzmq_INCLUDE_DIR})
endif()