other-licenses/nsis/Contrib/ExDLL/SConscript

Fri, 16 Jan 2015 18:13:44 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 18:13:44 +0100
branch
TOR_BUG_9701
changeset 14
925c144e1f1f
permissions
-rw-r--r--

Integrate suggestion from review to improve consistency with existing code.

     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')

mercurial