-
Notifications
You must be signed in to change notification settings - Fork 761
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #133 from ax3l/fix-pkgConfigAutotools
CMake: pkg-config Fallback
- Loading branch information
Showing
3 changed files
with
42 additions
and
3 deletions.
There are no files selected for viewing
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,16 @@ | |
@PACKAGE_INIT@ | ||
|
||
include(CMakeFindDependencyMacro) | ||
find_dependency(ZeroMQ) | ||
find_package(ZeroMQ) | ||
|
||
# libzmq autotools install: fallback to pkg-config | ||
if(NOT ZeroMQ_FOUND) | ||
include(${CMAKE_CURRENT_LIST_DIR}/libzmqPkgConfigFallback.cmake) | ||
endif() | ||
|
||
if(NOT ZeroMQ_FOUND) | ||
message(FATAL_ERROR "ZeroMQ was NOT found!") | ||
endif() | ||
|
||
if(NOT TARGET @PROJECT_NAME@) | ||
include("${CMAKE_CURRENT_LIST_DIR}/@[email protected]") | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
find_package(PkgConfig) | ||
pkg_check_modules(PC_LIBZMQ QUIET libzmq) | ||
|
||
set(ZeroMQ_VERSION ${PC_LIBZMQ_VERSION}) | ||
find_library(ZeroMQ_LIBRARY NAMES libzmq.so | ||
PATHS ${PC_LIBZMQ_LIBDIR} ${PC_LIBZMQ_LIBRARY_DIRS}) | ||
find_library(ZeroMQ_STATIC_LIBRARY NAMES libzmq.a | ||
PATHS ${PC_LIBZMQ_LIBDIR} ${PC_LIBZMQ_LIBRARY_DIRS}) | ||
|
||
add_library(libzmq SHARED IMPORTED) | ||
set_property(TARGET libzmq PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${PC_LIBZMQ_INCLUDE_DIRS}) | ||
set_property(TARGET libzmq PROPERTY IMPORTED_LOCATION ${ZeroMQ_LIBRARY}) | ||
|
||
add_library(libzmq-static STATIC IMPORTED ${PC_LIBZMQ_INCLUDE_DIRS}) | ||
set_property(TARGET libzmq-static PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${PC_LIBZMQ_INCLUDE_DIRS}) | ||
set_property(TARGET libzmq-static PROPERTY IMPORTED_LOCATION ${ZeroMQ_STATIC_LIBRARY}) | ||
|
||
if(ZeroMQ_LIBRARY AND ZeroMQ_STATIC_LIBRARY) | ||
set(ZeroMQ_FOUND ON) | ||
endif() |