Skip to content

Commit

Permalink
Merge pull request zeromq#145 from qsodev/fixcmakewarning
Browse files Browse the repository at this point in the history
added QUIET to avoid false cmake warning (missing ZeroMQ)
  • Loading branch information
bluca authored Aug 17, 2017
2 parents 8f56e3b + 4ad7a81 commit 156cf8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.0.0)
project(cppzmq)

find_package(ZeroMQ)
find_package(ZeroMQ QUIET)

# libzmq autotools install: fallback to pkg-config
if(NOT ZeroMQ_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion cppzmqConfig.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
@PACKAGE_INIT@

include(CMakeFindDependencyMacro)
find_package(ZeroMQ)
find_package(ZeroMQ QUIET)

# libzmq autotools install: fallback to pkg-config
if(NOT ZeroMQ_FOUND)
Expand Down

0 comments on commit 156cf8f

Please sign in to comment.