在我的 CMakeLists.txt 中
include (CheckFunctionExists.cmake)
当我运行
ccmake
(我正在关注官方 tutorial ) CMake Error at CMakeLists.txt:10 (include):
include could not find load file:
CheckFunctionExists.cmake
但是,我指定了文件:
sw3@pc90313-sw3:~/learn_cmake/build$ find / -name CheckFunctionExists.cmake 2>/dev/null
/usr/share/cmake-2.8/Modules/CheckFunctionExists.cmake
我正在使用来自 Ubuntu 13.04 存储库的 cmake 安装:
sw3@pc90313-sw3:~/learn_cmake/build$ cmake --version
cmake version 2.8.10.1
如果指定了绝对路径,则一切正常,并生成一个有效的 makefile。但是,这种解决方法远非理想(并且与教程不同)。问题可能出在哪里?
最佳答案
该路径称为 ${CMAKE_ROOT}
。所以系统文件的正确包含命令是
include (${CMAKE_ROOT}/Modules/CheckFunctionExists.cmake)
,教程后面会提到。
关于linux - 如何设置 CMake 搜索路径,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18978488/