Skip to content

Commit

Permalink
Reduce configuration (cmake) noise if pkg_config is not found
Browse files Browse the repository at this point in the history
  • Loading branch information
hkaiser committed Jun 4, 2017
1 parent 3b3c56b commit 2aaf99f
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion cmake/FindAmplifier.cmake
Expand Up @@ -4,7 +4,7 @@
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

find_package(PkgConfig)
find_package(PkgConfig QUIET)
pkg_check_modules(PC_AMPLIFIER QUIET amplifier)

find_path(AMPLIFIER_INCLUDE_DIR ittnotify.h
Expand Down
2 changes: 1 addition & 1 deletion cmake/FindGooglePerftools.cmake
Expand Up @@ -12,7 +12,7 @@
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

find_package(PkgConfig)
find_package(PkgConfig QUIET)
pkg_check_modules(PC_GOOGLE_PERFTOOLS QUIET libprofiler)

find_path(GOOGLE_PERFTOOLS_INCLUDE_DIR google/profiler.h
Expand Down
2 changes: 1 addition & 1 deletion cmake/FindHwloc.cmake
Expand Up @@ -6,7 +6,7 @@
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

find_package(PkgConfig)
find_package(PkgConfig QUIET)
pkg_check_modules(PC_HWLOC QUIET hwloc)

find_path(HWLOC_INCLUDE_DIR hwloc.h
Expand Down
2 changes: 1 addition & 1 deletion cmake/FindIbverbs.cmake
Expand Up @@ -6,7 +6,7 @@
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

find_package(PkgConfig)
find_package(PkgConfig QUIET)
pkg_check_modules(PC_IBVERBS QUIET libibverbs)

find_path(IBVERBS_INCLUDE_DIR infiniband/verbs.h
Expand Down
2 changes: 1 addition & 1 deletion cmake/FindJemalloc.cmake
Expand Up @@ -7,7 +7,7 @@
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

find_package(PkgConfig)
find_package(PkgConfig QUIET)
pkg_check_modules(PC_JEMALLOC QUIET jemalloc)

find_path(JEMALLOC_INCLUDE_DIR jemalloc/jemalloc.h
Expand Down
2 changes: 1 addition & 1 deletion cmake/FindLibfabric.cmake
Expand Up @@ -3,7 +3,7 @@
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

find_package(PkgConfig)
find_package(PkgConfig QUIET)
pkg_check_modules(PC_LIBFABRIC QUIET libfabric)

find_path(LIBFABRIC_INCLUDE_DIR rdma/fabric.h
Expand Down
2 changes: 1 addition & 1 deletion cmake/FindMSR.cmake
Expand Up @@ -7,7 +7,7 @@
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

find_package(PkgConfig)
find_package(PkgConfig QUIET)
pkg_check_modules(PC_MSR QUIET libmsr)

find_path(MSR_INCLUDE_DIR msr_core.h
Expand Down
2 changes: 1 addition & 1 deletion cmake/FindOrangeFS.cmake
Expand Up @@ -4,7 +4,7 @@
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

find_package(PkgConfig)
find_package(PkgConfig QUIET)
pkg_check_modules(PC_ORANGEFS QUIET orangefs)

find_path(ORANGEFS_INCLUDE_DIR NAMES pxfs.h orange.h
Expand Down
2 changes: 1 addition & 1 deletion cmake/FindPAPI.cmake
Expand Up @@ -6,7 +6,7 @@
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

find_package(PkgConfig)
find_package(PkgConfig QUIET)
pkg_check_modules(PC_PAPI QUIET papi)

find_path(PAPI_INCLUDE_DIR papi.h
Expand Down
2 changes: 1 addition & 1 deletion cmake/FindPMI.cmake
Expand Up @@ -3,7 +3,7 @@
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

find_package(PkgConfig)
find_package(PkgConfig QUIET)
# look for cray pmi...
pkg_check_modules(PC_PMI_CRAY QUIET cray-pmi)
# look for the rest if we couldn't find the cray package
Expand Down
2 changes: 1 addition & 1 deletion cmake/FindQThreads.cmake
Expand Up @@ -4,7 +4,7 @@
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

find_package(PkgConfig)
find_package(PkgConfig QUIET)
pkg_check_modules(PC_QTHREADS QUIET swarm)

find_path(QTHREADS_INCLUDE_DIR qthread/qthread.h
Expand Down
2 changes: 1 addition & 1 deletion cmake/FindRdmacm.cmake
Expand Up @@ -6,7 +6,7 @@
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

find_package(PkgConfig)
find_package(PkgConfig QUIET)
pkg_check_modules(PC_RDMACM QUIET libibverbs)

find_path(RDMACM_INCLUDE_DIR rdma/rdma_cma.h
Expand Down
2 changes: 1 addition & 1 deletion cmake/FindSnappy.cmake
Expand Up @@ -4,7 +4,7 @@
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

find_package(PkgConfig)
find_package(PkgConfig QUIET)
pkg_check_modules(PC_SNAPPY QUIET snappy)

find_path(SNAPPY_INCLUDE_DIR snappy.h
Expand Down
2 changes: 1 addition & 1 deletion cmake/FindTBB.cmake
Expand Up @@ -4,7 +4,7 @@
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

find_package(PkgConfig)
find_package(PkgConfig QUIET)
pkg_check_modules(PC_TBB QUIET libtbb)

find_path(TBB_INCLUDE_DIR tbb/tbb.h
Expand Down
2 changes: 1 addition & 1 deletion cmake/FindTBBmalloc.cmake
Expand Up @@ -6,7 +6,7 @@
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

find_package(PkgConfig)
find_package(PkgConfig QUIET)
pkg_check_modules(PC_TBBMALLOC QUIET libtbbmalloc)

find_path(TBBMALLOC_INCLUDE_DIR tbb/scalable_allocator.h
Expand Down
2 changes: 1 addition & 1 deletion cmake/FindTCMalloc.cmake
Expand Up @@ -7,7 +7,7 @@
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

find_package(PkgConfig)
find_package(PkgConfig QUIET)
pkg_check_modules(PC_TCMALLOC_MINIMAL QUIET libtcmalloc_minimal)
pkg_check_modules(PC_TCMALLOC QUIET libtcmalloc)

Expand Down
2 changes: 1 addition & 1 deletion cmake/FindValgrind.cmake
Expand Up @@ -7,7 +7,7 @@
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

find_package(PkgConfig)
find_package(PkgConfig QUIET)
pkg_check_modules(PC_VALGRIND QUIET valgrind)

find_path(VALGRIND_INCLUDE_DIR valgrind/valgrind.h
Expand Down

0 comments on commit 2aaf99f

Please sign in to comment.