I have the following setup:
Folder C contains...
1. Folder A
- A.cpp
2. Folder B
- Folder B1
- B.h
In A.cpp, I need to include B.h but I always get a No Such File or Directory error. I have tried
which I think is supposed to be correct but it still generates an error.
Folder C contains...
1. Folder A
- A.cpp
2. Folder B
- Folder B1
- B.h
In A.cpp, I need to include B.h but I always get a No Such File or Directory error. I have tried
Code:
#include <B/B1/B.h>
Comment