Clion this file does not belong to any project target错误
在CLion多文件编程,c++编程添加头文件时,运行时报错
在对应头文件的.cpp文件中出现 This file does not belong to any project ,code insight features might not work properly 提示
意思是: 此文件不属于任何项目,代码洞察功能可能无法正常工作
就是main程序添加这个头文件无效
解决方法在 CMakeLists.txt中添加 对应文件
在 add_executable(项目名 文件2.cpp 文件2.cpp),运行程序,问题解决。