clion中cpp文件显示This file does not belong to any project ,code insight features might not work【解决方案】

简介: clion中cpp文件显示This file does not belong to any project ,code insight features might not work【解决方案】

问题


cpp文件上方出现

This file does not belong to any project ,code insight features might not work properly,并且main函数无法运行

1.png


解决方案


第一步:修改下CMakeLists.txt文件


为了以后方便,我们先修改下CMakeLists.txt文件

1.png

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这个文件了。


第二步:重新加载下项目


2.png

加载完成后main函数就可以执行了,及时cpp文件上方还有那句话也不影响。

3.png



以上就是clion中cpp文件显示This file does not belong to any project ,code insight features might not work【解决方案】的全部内容

相关文章
|
6月前
|
C++
CLion创建C/C++文件时添加模板代码
CLion创建C/C++文件时添加模板代码
125 0
CLion创建C/C++文件时添加模板代码
|
5月前
|
IDE 开发工具 C++
插件:CLion中使用C/C++ Single File Execution插件编译和运行单个文件
插件:CLion中使用C/C++ Single File Execution插件编译和运行单个文件
513 0
|
6月前
|
Java 测试技术 开发工具
clion的使用扫坑记(建多个文件,没有运行三角等)
clion的使用扫坑记(建多个文件,没有运行三角等)
404 0
|
C++
Clion配置单个project下可以运行多个CPP文件的main函数
Clion配置单个project下可以运行多个CPP文件的main函数
1322 0
CLion中创建多个.c文件不能运行问题及报错问题
CLion中创建多个.c文件不能运行问题及报错问题
CLion中创建多个.c文件不能运行问题及报错问题
|
3月前
clion中cmake配置含义
clion中cmake配置含义
97 0
|
3月前
|
开发工具 git 计算机视觉
在Ubuntu16.04上配置CLion的OpenCV4.3.0开发环境
在Ubuntu16.04上配置CLion的OpenCV4.3.0开发环境
36 0
|
5月前
Clion-2023.1.4配置CMake-3.25.3
Clion-2023.1.4配置CMake-3.25.3
|
5月前
|
IDE 开发工具 C++
快速开始c,配置Clion
快速开始c,配置Clion
|
6月前
|
Ubuntu 编译器 Linux
百度搜索:蓝易云【Ubuntu18.04系统下配置Clion教程】
现在您已经成功配置了CLion在Ubuntu 18.04系统上进行C/C++开发。开始编写和调试您的代码吧!
72 0