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
This commit is contained in:
parent
8e30ac8979
commit
988c973576
1 changed files with 25 additions and 0 deletions
25
Contrib/ExDLL/SConscript
Normal file
25
Contrib/ExDLL/SConscript
Normal file
|
@ -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')
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue