program files managment

Hello,
So, basically, what I have is a project in folder and variaty of other related to project files for example; header files, cpp files, music, pictures. So, what I want to do is to have seperate folders where the project located. One folder will be called music, other - headers and so on. So, how to have them in seperate folders, how I should #include "path" in header files. Plus it also must be portable so, if I would move my project to another folder/disk/computer, it would run without any hestitations. One more thing, the simpler way - the better.
1
2
#include "someheader.h" //for current directory
#include "dir/etor/y/anotherheader.hpp" //for relative path directory 
Works for any OS, Compiler, or location of files.
Last edited on
Topic archived. No new replies allowed.