有人能告诉我如何正确安装Cmake和GoogleTest吗
gtest_discover_tests
是否可用?。我安装了
cmake-3.23.0-rc3
和
googletest-release-1.11.0
从源代码,但我仍然无法编译该项目
https://github.com/D-os/libbinder
由于空闲错误
CMake Error at tests/CMakeLists.txt:15 (gtest_discover_tests):
Unknown CMake command "gtest_discover_tests".
我正在使用Slackware 14.2 x64
该函数是在GoogleTest
脚本文件(模块(中定义的,因此您需要像这样包含它:include(GoogleTest)
然后你就可以使用这个功能了。