问题
cpp文件上方出现
This file does not belong to any project ,code insight features might not work properly,并且main函数无法运行
解决方案
第一步:修改下CMakeLists.txt文件
为了以后方便,我们先修改下CMakeLists.txt文件
CMakeLists.txt:
# 遍历项目根目录下所有的 .cpp 文件 file (GLOB_RECURSE files *.cpp) foreach (file ${files}) string(REGEX REPLACE ".+/(.+)\\..*" "\\1" exe ${file}) add_executable (${exe} ${file}) message (\ \ \ \ --\ src/${exe}.cpp\ will\ be\ compiled\ to\ bin/${exe}) endforeach ()
这样以后就不用再修改CMakeLists.txt这个文件了。
第二步:重新加载下项目
加载完成后main函数就可以执行了,及时cpp文件上方还有那句话也不影响。
以上就是clion中cpp文件显示This file does not belong to any project ,code insight features might not work【解决方案】的全部内容