mirror of
https://github.com/google/benchmark.git
synced 2025-03-13 18:50:11 +08:00
There is no upstream PFM cmake package config file to use, so this has
to be installed for the benchmark cmake package config file to work.
Bug: https://bugs.gentoo.org/950573
See-Also: c2146397ac
Signed-off-by: Alfred Wingate <parona@protonmail.com>
13 lines
273 B
CMake
13 lines
273 B
CMake
@PACKAGE_INIT@
|
|
|
|
include (CMakeFindDependencyMacro)
|
|
|
|
find_dependency (Threads)
|
|
|
|
if (@BENCHMARK_ENABLE_LIBPFM@)
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}")
|
|
find_dependency (PFM)
|
|
endif()
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@targets_export_name@.cmake")
|