James wrote: > > Im compiling in a windows environment directly through dev C++, are those > linux console commands or am i being silly? If not where to i configure the > compiler in dev C++? > > Sorry if this is assumed knowledge
As Ian wrote, these were (Windows) commandline options. If you can't use the command line with Cygwin or MinGW, as Ian suggested, then you should try to configure your dev C++ environment directly - however, I can't help with this, because I don't know it. You should look for the linker library setup, and there you should find the fltk library (-lfltk below) somewhere. The following line shows the libraries that FLTK 1.1 would use. FLTK 1.3 is similar, but doesn't need wsock32: -lfltk_images -lpng -ljpeg -lz -lfltk -lole32 -luuid -lcomctl32 -lwsock32 -lsupc++ The missing part in your config seems to be -lfltk_images (or maybe fltk_images.lib or similar for dev C++ ?). If you can't find it, then maybe someone with dev C++ knowledge can help better. Albrecht _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

