mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-03-22 15:05:03 +01:00
cppzmq libs
This commit is contained in:
9
CMake_modules/Findcppzmq.cmake
Normal file
9
CMake_modules/Findcppzmq.cmake
Normal 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()
|
||||
|
||||
Reference in New Issue
Block a user