27 lines
411 B
Python
27 lines
411 B
Python
#!/usr/bin/env python
|
|
|
|
def options(opt):
|
|
pass
|
|
|
|
def configure(conf):
|
|
pass
|
|
|
|
def build(bld):
|
|
bld.stlib(
|
|
source =
|
|
'''
|
|
About_Dialog.fl
|
|
Fl_Menu_Settings.C
|
|
Fl_Scalepack.C
|
|
Fl_Text_Edit_Window.fl
|
|
Fl_Value_SliderX.C
|
|
New_Project_Dialog.fl
|
|
event_name.C
|
|
menu_popup.C
|
|
test_press.C
|
|
''',
|
|
includes = '.',
|
|
export_incdirs = [ '.' 'FL' ],
|
|
uselib = 'NTK',
|
|
target = 'fl_widgets')
|