On Sun, 5 Oct 2008, Oguz Akyuz wrote: > Hi Everybody, > > I've been using FLTK for some time now, > and I'm generally very satisfied with it. > However, one nuisance that often disturbs > me is when I "Write Code" using fluid, > it updates both header and sources files > causing the subsequent compilation take > a painstakingly longer time.
Assuming you're working with make files: A simple workaround would be to let your compilation depend on a copy of the header files, rather than the header files generated by fluid. Diff should allow you to compare the two versions and copy over new headers if they have actually changed. Also, if you have a dual core machine, you may want to consider compiling with make -j2 (or -j4 for quad core). Best, Marc _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

