SConscript (407B)
1 # FIXME: install assembly and pascal includes into the correct locations 2 3 c_devel = Split(""" 4 exdll.h 5 """) 6 7 example = Split(""" 8 exdll.c 9 exdll.dpr 10 exdll.dsp 11 exdll.dsw 12 exdll_with_unit.dpr 13 nsis.pas 14 extdll.inc 15 """) 16 17 Import('defenv') 18 19 if defenv['PLATFORM'] == 'win32': 20 example += c_devel 21 else: 22 defenv.DistributeIncC(c_devel) 23 24 defenv.DistributeExamples(example, path='Plugin')