hi how can I tell g++ the include files are in some other directory?
Cheers,
Adrian.
include dirs
Re:include dirs
gcc manual, chapter 3.11 "Options Controlling the Preprocessor", page 61.
(Hint, hint...)
The option you're looking for is -I.
(Hint, hint...)
The option you're looking for is -I.
Every good solution is obvious once you've found it.
Re:include dirs
Thank you! That will allow me to divide my files into directories.
Thanx,
Adrian.
Ah, so there is one. I'll try to use it, I hope it will be easy.gcc manual, chapter 3.11
Thanx,
Adrian.
Re:include dirs
http://www.gnu.org/manual/manual.htmlAdek336 wrote:Ah, so there is one.gcc manual, chapter 3.11
Every good solution is obvious once you've found it.