Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
zyre/Findczmq.cmake
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
46 lines (40 sloc)
1.82 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################################################################################ | |
# THIS FILE IS 100% GENERATED BY ZPROJECT; DO NOT EDIT EXCEPT EXPERIMENTALLY # | |
# Read the zproject/README.md for information about making permanent changes. # | |
################################################################################ | |
if (NOT MSVC) | |
find_package(PkgConfig) | |
pkg_check_modules(PC_CZMQ "libczmq") | |
if (PC_CZMQ_FOUND) | |
# add CFLAGS from pkg-config file, e.g. draft api. | |
add_definitions(${PC_CZMQ_CFLAGS} ${PC_CZMQ_CFLAGS_OTHER}) | |
# some libraries install the headers is a subdirectory of the include dir | |
# returned by pkg-config, so use a wildcard match to improve chances of finding | |
# headers and SOs. | |
set(PC_CZMQ_INCLUDE_HINTS ${PC_CZMQ_INCLUDE_DIRS} ${PC_CZMQ_INCLUDE_DIRS}/*) | |
set(PC_CZMQ_LIBRARY_HINTS ${PC_CZMQ_LIBRARY_DIRS} ${PC_CZMQ_LIBRARY_DIRS}/*) | |
endif(PC_CZMQ_FOUND) | |
endif (NOT MSVC) | |
find_path ( | |
${CMAKE_FIND_PACKAGE_NAME}_INCLUDE_DIRS | |
NAMES czmq.h | |
HINTS ${PC_CZMQ_INCLUDE_HINTS} | |
) | |
find_library ( | |
${CMAKE_FIND_PACKAGE_NAME}_LIBRARIES | |
NAMES libczmq czmq | |
HINTS ${PC_CZMQ_LIBRARY_HINTS} | |
) | |
include(FindPackageHandleStandardArgs) | |
find_package_handle_standard_args( | |
${CMAKE_FIND_PACKAGE_NAME} | |
REQUIRED_VARS ${CMAKE_FIND_PACKAGE_NAME}_LIBRARIES ${CMAKE_FIND_PACKAGE_NAME}_INCLUDE_DIRS | |
) | |
mark_as_advanced( | |
${CMAKE_FIND_PACKAGE_NAME}_FOUND | |
${CMAKE_FIND_PACKAGE_NAME}_LIBRARIES ${CMAKE_FIND_PACKAGE_NAME}_INCLUDE_DIRS | |
) | |
################################################################################ | |
# THIS FILE IS 100% GENERATED BY ZPROJECT; DO NOT EDIT EXCEPT EXPERIMENTALLY # | |
# Read the zproject/README.md for information about making permanent changes. # | |
################################################################################ |