Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 # FIXME: install assembly and pascal includes into the correct locations
3 c_devel = Split("""
4 exdll.h
5 """)
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 """)
17 Import('defenv')
19 if defenv['PLATFORM'] == 'win32':
20 example += c_devel
21 else:
22 defenv.DistributeIncC(c_devel)
24 defenv.DistributeExamples(example, path='Plugin')