How to include a file from another folder?

后端 未结 3 941
南笙
南笙 2021-01-31 19:35

In my current project I have separated my class files and my header files. My project structure currently looks like this:

  • Project

    • Source
3条回答
  •  灰色年华
    2021-01-31 19:51

    I had a very similar problem where my compiler could not find the header with a code::blocks C++ project (same file structure as OP) .

    This worked for me:

    #include "../include/class1.h"
    

提交回复
热议问题