view SConscript @ 1:43787e2ca831 stable

Created stable branch. * Release-quality code from the default branch should be merged into stable and tagged as appropriate. * Minor bug fixes should go into stable and immediately merged into default to keep the branches in sync.
author M. George Hansen <technopolitica@gmail.com>
date Sun, 15 May 2011 14:49:14 -0700
parents 1fd2201f5c36
children
line wrap: on
line source

Import('environment', 'config_dict')

environment['PY_PACKAGES'] += [
    Dir('src/parpg'),
]
config_file_template = File('system.cfg.in')
environment['CONFIG_FILES'] += [
    environment.Substfile(config_file_template, SUBST_DICT=config_dict)
]
environment['DATA_FILES'] += []
# TODO M. George Hansen 2011-05-12: Implement windows executable.
executable_template = File('bin/unix/parpg.in')
environment['EXECUTABLES'] += [
    environment.Substfile(executable_template, SUBST_DICT=config_dict)
]