On 20.05.2011 15:51, asif saeed wrote: > I am trying to use the fltkdll project's DLL build for a very simple example > extracted from the programmer's manual "Basics" section. It looks like the > linker cannot find FLTKDLLd.DLL. How can I make it find the dll?
There are two different dll's, depending on what build type you use to build the FLTK libs (before you build your own project). Use "Release" mode -> fltkdll.dll Use "Debug" mode -> fltkdlld.dll In debug mode all dll names have this additional 'd'. So you can either change your project to use fltkdll.dll or build FLTK in "Debug" mode to get fltkdlld.dll with debug info included. Note that the dll may be built in an unexpected directory (maybe src or test). Albrecht _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

