Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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')