https://github.com/google/benchmarkgithub.com/google/benchmark 有: CMakeLists.txt cmake_minimum_required ( VERSION 3.20 ) project ( testprj ) set ( PRJ_COMPILE_FEATURES ) set ( PRJ_LIBRARIES ) list ( APPEND PRJ_COMPILE_FEATURES cxx_std_23 ) find_package ( benchmark REQUIRED ) list...
我正在尝试在 Windows 上使用 Google Benchmark 和 g++ 编译器。我使用 vcpkg 包管理器和三元组 x64-mingw-static 安装了该库。 这是我用来安装它的命令: vcpkg install benchmark:x64-mingw-static 我已验证文件 benchmark.a 和 benchmark_main.a 存在于指定目录中。这是命令: g++ -std=c++23 test_...