mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 16:09:07 +08:00
11 lines
252 B
CMake
11 lines
252 B
CMake
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
|
|
)
|