From 988c973576f57ef827610a46cb8172813433bb55 Mon Sep 17 00:00:00 2001 From: pabs3 Date: Thu, 15 Mar 2007 00:43:42 +0000 Subject: [PATCH] fixed bug #1680944: Woooops, add the SConscript for ExDLL git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4997 212acab6-be3b-0410-9dea-997c60f758d6 --- Contrib/ExDLL/SConscript | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Contrib/ExDLL/SConscript diff --git a/Contrib/ExDLL/SConscript b/Contrib/ExDLL/SConscript new file mode 100644 index 00000000..7bee5ab6 --- /dev/null +++ b/Contrib/ExDLL/SConscript @@ -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') +