Hello,
I am developing what is now a rather large MFC application. All source code files are in one folder. This folder has now become very crowded, which has made it necessary to split the project into multiple folders. I can compile CPP files in the child folders that include headers in the base folder by doing #include "../base_header.h" . However, I'm not sure how to include headers in child folders in base cpp files. I would have thought #include "/child/child_header.h", or #include "child/child_header.h" would do the trick, but they don't. How can I include these child headers?
Regards,
Sternocera
Start Free Trial