Mercurial > parpg-core
comparison SConscript @ 0:1fd2201f5c36
Initial commit of parpg-core.
author | M. George Hansen <technopolitica@gmail.com> |
---|---|
date | Sat, 14 May 2011 01:12:35 -0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:1fd2201f5c36 |
---|---|
1 Import('environment', 'config_dict') | |
2 | |
3 environment['PY_PACKAGES'] += [ | |
4 Dir('src/parpg'), | |
5 ] | |
6 config_file_template = File('system.cfg.in') | |
7 environment['CONFIG_FILES'] += [ | |
8 environment.Substfile(config_file_template, SUBST_DICT=config_dict) | |
9 ] | |
10 environment['DATA_FILES'] += [] | |
11 # TODO M. George Hansen 2011-05-12: Implement windows executable. | |
12 executable_template = File('bin/unix/parpg.in') | |
13 environment['EXECUTABLES'] += [ | |
14 environment.Substfile(executable_template, SUBST_DICT=config_dict) | |
15 ] | |
16 |