Hi all:
A C++ newbie, actually a programming newbie here. When I tried to include some external libraries written for FLTK, I wrote the following lines:
include <scr/fltk-1.1.9/Fl.h>
include <scr/fltk-1.1.9/Windows.h>
and etc
To my understanding, the compiler will automatically look for the file name that follows include in the same directory of the current .cpp file.
My current .cpp file is in a folder along with a folder called "scr" which has a sub-folder called "fltk-1.1.9" which includes all the library files I need.
What have I done wrong?
Thank you