My Debug directory has no include directory, source (.c / .cpp) files or header files, only object files. I'm assuming that my Debug directory should have the source files and include directory and pretty much image my non-Debug directory structure. I'm guessing that I must have missed something during my initial setup of the project.
My workspace directory structure looks like the following: workspace/projectName/Debug/usr/local/stevesProject/src/---- dir1/src/xxx.o
dir2/src/xxx.o
to
dir10/src/xxx.o
workspace/projectName/usr/local/stevesProject/src/---- include/xxx.h
dir1/src/xxx.cpp, xxx.h, xxx.o
dir2/src/xxx.cpp, xxx.h, xxx.o
to
dir10/src/xxx.cpp, xxx.h, xxx.o
Should I be building out of the non-Debug directory or the Debug directory?
Thank You.