Merge pull request #4546 from cdepillabout/link-openpgm-cmake-fresh

Link to openpgm when building with cmake
This commit is contained in:
Luca Boccassi 2023-05-11 13:59:13 +01:00 committed by GitHub
commit 077dd92616
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View File

@ -1515,6 +1515,10 @@ if(BUILD_SHARED)
if(norm_FOUND)
target_link_libraries(libzmq norm::norm)
endif()
if(OPENPGM_FOUND)
target_link_libraries(libzmq ${OPENPGM_LIBRARIES})
endif()
endif()
if(BUILD_STATIC)
@ -1565,6 +1569,10 @@ if(BUILD_STATIC)
if(norm_FOUND)
target_link_libraries(libzmq-static norm::norm)
endif()
if(OPENPGM_FOUND)
target_link_libraries(libzmq-static ${OPENPGM_LIBRARIES})
endif()
endif()
if(BUILD_SHARED)

16
RELICENSE/cdepillabout.md Normal file
View File

@ -0,0 +1,16 @@
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
This is a statement by Dennis Gosnell that grants permission to
relicense its copyrights in the libzmq C++ library (ZeroMQ) under the
Mozilla Public License v2 (MPLv2) or any other Open Source Initiative
approved license chosen by the current ZeroMQ BDFL (Benevolent
Dictator for Life).
A portion of the commits made by the Github handle "cdepillabout", with
commit author "Dennis Gosnell <cdep.illabout@gmail.com>", are
copyright of Dennis Gosnell. This document hereby grants the libzmq
project team to relicense libzmq, including all past, present and
future contributions of the author listed above.
Dennis Gosnell
2023/05/11