【CLion】CLion 总是提示 “This file does not belong to any project target xxx” 的解决方法

参考:In IntelliJ, How Do I Fix “These Files Do Not Belong to the Project”?

在使用 CLion 写 c++ 时,文件上方提示 “This file does not belong to any project target xxx” 时,可如下操作:

  1. 如果是头文件:如果该头文件没有被其他文件引用,则会显示此提示,所以需要在其他地方引用该头文件。
  2. 如果是源文件:如果该源文件没有被添加到 CMakeLists.txt 文件中,则会显示此提示,所以需要将此文件添加到 CMakeList 中,然后删除 cmake 缓存并重新 Reload CMake Project
  3. 如果是新增加到项目中的头/源文件:原因是 cmake 缓存中没有将新增文件添加到构建命令中,解决方法与 1、2 相同。

但是在我的项目中,出现了不属于上述任何情况但是文件上方仍然提示 “This file does not belong to any project target xxx” 的问题,最终研究一番后这样解决:

菜单栏 File -> Invalidate Caches… -> Invalidate and Restart.

CLion 重启后不再提示。

你可能感兴趣的:(Tools,c++)