4

在我的 CMakeLists.txt

include (CheckFunctionExists.cmake)

当我跑步时ccmake(我正在关注官方教程

 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。但是,这种解决方法远非理想(并且与教程不同)。问题可能出在哪里?

4

1 回答 1

6

路径称为${CMAKE_ROOT}。所以系统文件的正确包含命令是

include (${CMAKE_ROOT}/Modules/CheckFunctionExists.cmake)

,在教程后面会提到。

于 2013-09-24T10:54:56.150 回答