Skip to content

Commit

Permalink
added QUIET to avoid false cmake warning (missing ZeroMQ)
Browse files Browse the repository at this point in the history
  • Loading branch information
qsodev committed Aug 17, 2017
1 parent d9f0f01 commit 4ad7a81
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 4ad7a81

Please sign in to comment.