Hi. Just information for someone who may want to try this. New version(1.5.10)
of waf build system( http://code.google.com/p/waf/ ) is out and it supports
easy building of fltk applications out of the box now.
Here is sample build-script:
def set_options(opt):
opt.tool_options('compiler_cxx')
def configure(conf):
conf.check_tool('compiler_cxx')
conf.check_tool('fluid')
def build(bld):
bld.new_task_gen(
features = 'cxx cprogram',
target = 'sample',
source = 'main.cpp PopupDialog.fl UserInterface.fl',
includes = '.',
install_path = '${PREFIX}/bin/',
uselib = 'FLTK')
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk