huda wrote:
> "fatal error C1083: Cannot open include file: 'fl/Fl_Table.h': No such file 
> or directory "

        Try using "#include <FL/Fl_Table.H>"
        ..and not "#include <fl/Fl_Table.h>"

> http://seriss.com/people/erco/fltk/Fl_Table/how-to-use.html
> I visited this site to learn how to add the package but i did
> not understand..

        Since Fl_Table is a separate project from FLTK, one normally
        installs it in a separate directory. For instance:

c:\fltk-1.3.x\          -- fltk install dir
c:\Fl_Table\            -- Fl_Table install dir

        ..in which case when you compile your own apps, you'd need
        to have the compiler flags:

                /Ic:\fltk-1.3.x /Ic:\Fl_Table

        ..so that when you build your program, lines like:

                #include <FL/Fl_Window.H>
                #include <FL/Fl_Table.H>

        ..will resolve correctly. That should solve the error
        you've shown.

        Be sure to also /link/ with the correct files, eg.
        fltk.lib, Fl_Table.obj, etc. (Based on your error message,
        I'm assuming you're using windows..)

_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to