在我的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。但是,这种解决方法远非理想(并且与教程不同)。问题出在哪里?
答案 0 :(得分:6)
路径名为${CMAKE_ROOT}
。因此系统文件的正确include命令是
include (${CMAKE_ROOT}/Modules/CheckFunctionExists.cmake)
,在本教程后面提到。