sungsoo wrote: > Hi, > > I want to use fltk 2.0 since I have an example code which is made based on > the fltk 2.0. When I download the fltk 2.0 and open the compressed file, I > couldn't find any library file in there. How can I get library file of fltk > 2.0 such as fltk2.lib and so on. > > I use window not linux. > > Thanks for your suggestion or any comments in advance. > >
sungsoo, I build FLTK2 inside MSYS, using GCC from the MinGW distribution. More about it: http://www.mingw.org . Step-by-step guide: 1) Download and install MinGW, in let's say: C:/gnu . A nice installer is available. 2) Download and install MSYS. You have a nice installer for it. 3) Download and install MSYSDEV (or something like that) and install that one as well, if you do not like downloading autotools packages with binaries from MinGW mirrors. 4) Download latest FLTK2 source package, and save it in C:/tmp 5) Start MSYS. 6) execute: cd /c/tmp tar xvfz fltk2package.tar.gz cd fltk2 ./aclocal && ./aucotonf && ./configure --prefix=/usr && make If everything goes well, you will have FLTK2 binaries in the current directory. I was thinking of providing binaries somewhere just for those who do not bother compiling them themselves. But my experience tells me that will just fill my mailbox with requests, suggestions - all this because I cannot build a binary package that satisfies everyone. :) Someone wants static libraries, someone wants some stuff excluded, some stuff included, etc. Kind regards Dejan _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

