mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2025-01-20 10:54:09 -05:00
11 lines
252 B
CMake
Executable File
11 lines
252 B
CMake
Executable File
find_path(CZMQ_INCLUDE_DIRS NAMES czmq.h)
|
|
|
|
find_package(czmq CONFIG REQUIRED)
|
|
set(CZMQ_LIBRARIES czmq czmq-static)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(
|
|
CZMQ
|
|
REQUIRED_VARS CZMQ_INCLUDE_DIRS CZMQ_LIBRARIES
|
|
)
|