Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试#include "physics/everything.hpp"在我的一个项目文件中,但是我收到错误:“没有这样的文件或目录”
#include "physics/everything.hpp"
我正在使用代码块,并且该目录肯定存在,因为它显示在左侧项目浏览器窗格中。
有任何想法吗?
用于Settings -> Compiler & Debugger Settings -> Search Directories添加项目的根目录以包含目录。您应该这样做才能不通过相对路径而是通过相对于项目根目录来包含文件。
Settings -> Compiler & Debugger Settings -> Search Directories
向大家道歉:我应该这样做:
#include "./../physics/everything.hpp"
执行包含的文件本身位于子目录中......(新手错误)