blob: 2c6308545f3dd553df9a3d125eea14b42063af72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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')
|