cmake一般编译错误问题

本文详细解析了CMake中关于找不到库的错误,包括设置变量、源文件引用问题,以及解决方法——重新编译并清理build目录。重点介绍了变量引用格式和库链接的正确用法。

1、CMake Error: The following variables are used in this project, but they are set to NOTFOUND.

这个是绑定库时,找不到库报的错误。

例如:

cmake_minimum_required (VERSION 2.8)

project (demo)

#指定执行文件路径
set (EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin)

set (SRC_LIST ${PROJECT_SOURCE_DIR}/src/main.c)
find_library(TESTFUNC_LIB testFunc HINTS ${PROJECT_SOURCE_DIR}/lib)
add_executable (main ${SRC_LIST})
target_link_libraries (main ${TESTFUNC_LIB})

当lib文件下有库时,

可以编译过。

当把这两个文件删掉时,就会报错:

CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake files:
TESTFUNC_LIB
    linked by target "main" in directory /home/wang/Desktop/myCCPrimer/others/cMake

-- Configuring incomplete, errors occurred!
See also "/home/wang/Desktop/myCCPrimer/others/cMake/CMakeFiles/CMakeOutput.log".

2、

CMake Error at CMakeLists.txt:18 (add_library):
  Cannot find source file:

    $(SRC_LIST)

  Tried extensions .c .C .c++ .cc .cpp .cxx .m .M .mm .h .hh .h++ .hm .hpp
  .hxx .in .txx


CMake Error: CMake can not determine linker language for target: testFunc_shared

找不到源文件,原因:使用变量时,${变量=}写成了$(变量)。

add_library(testFunc_shared SHARED ${SRC_LIST})   (正确)
写成了:
add_library(testFunc_shared SHARED $(SRC_LIST))    (错误)

3、Re-run cmake with a different source directory.

解决方案:将build里面编译的文件全部删掉即可。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值