Tomas Bym wrote: > > It is on windows XP. I am using the Visual Studio 2005. I will try to explain > my problem from the beginning,because I don't really understand how to make > it run. > > 1) to have run my application on my computer, I had to add some libraries to > my project. Configuration Properties->Linker->Command Line - "wsock32.lib > opengl32.lib glu32.lib fltk.lib fltkgl.lib flulibd.lib comctl32.lib"
I can't help much how to configure Visual Studio, but as it looks, you are linking against the FLTK dlls. Using .lib files in the linker means that you need the corresponding .dll files for running the program. fltk.lib fltkgl.lib seem to be the FLTK libraries, you would need fltk.dll and fltkgl.dll at runtime. flulibd.lib: is this for Flu tree browser or similar? The "d" in flulibd probably means a debug version. Could you also use flulib.lib (is it available) ? In the windows world there are problems, if you combine debug versions and normal versions of dlls, maybe ... If you would link with the FLTK (and Flu) object files (static linking), then you wouldn't need the dlls at runtime. If you want to try, you should find the .dll files and copy them in the same directory where you copied the .exe file. Albrecht _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

