I installed fltk in vc6.0 by building project fltk.dsw. Building was a success.
But when I compiled my own project whose source file was
#include <FL/Fl.H>
#include <FL/Fl_Window.H>
#include <FL/Fl_Button.H>
int main(int argc, char *argv[]) {
Fl_Window* w = new Fl_Window(330, 190);
new Fl_Button(110, 130, 100, 35, "Okay");
w->end();
w->show(argc, argv);
return Fl::run();
}
an error popped up:
Fatal error C1083: Cannot open include file: 'FL/Fl.H': No such file or
directory
Error executing cl.exe.
But I swa Fl.H was under C:\fltk-1.1.9\FL. What is the problem? Help me. Thanks.
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk