diff -r 000000000000 -r 6474c204b198 other-licenses/nsis/Contrib/ExDLL/SConscript --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/other-licenses/nsis/Contrib/ExDLL/SConscript Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,25 @@ +# FIXME: install assembly and pascal includes into the correct locations + +c_devel = Split(""" + exdll.h +""") + +example = Split(""" + exdll.c + exdll.dpr + exdll.dsp + exdll.dsw + exdll_with_unit.dpr + nsis.pas + extdll.inc +""") + +Import('defenv') + +if defenv['PLATFORM'] == 'win32': + example += c_devel +else: + defenv.DistributeIncC(c_devel) + +defenv.DistributeExamples(example, path='Plugin') +