Skip to content

Commit

Permalink
cmake: find libuv pkgconfig non-QUIET
Browse files Browse the repository at this point in the history
  • Loading branch information
madebr committed May 28, 2021
1 parent 6eb1a67 commit de21375
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmake/modules/FindLibuv.cmake
Expand Up @@ -29,9 +29,9 @@ This module will set the following variables in your project:
#]=======================================================================]

find_package(PkgConfig QUIET)
if(PKG_CONFIG_FOUND)
pkg_check_modules(PkgLibuv IMPORTED_TARGET GLOBAL QUIET libuv)
endif()
if (PKG_CONFIG_FOUND)
pkg_check_modules(PkgLibuv IMPORTED_TARGET GLOBAL libuv)
endif ()

if (PkgLibuv_FOUND)
set(LIBUV_INCLUDE_DIR ${PkgLibuv_INCLUDE_DIRS} CACHE FILEPATH "libuv include path")
Expand Down

0 comments on commit de21375

Please sign in to comment.