-
Notifications
You must be signed in to change notification settings - Fork 0
/
SConscript
26 lines (23 loc) · 1.13 KB
/
SConscript
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- python -*-
#
# $Id: SConscript,v 1.10 2013/12/21 00:06:37 giacomov Exp $
# Authors: Giacomo Vianello <giacomov@slac.stanford.edu>
# Version: pyBurstAnalysisGUI-01-04-03
Import('baseEnv')
Import('listFiles')
progEnv = baseEnv.Clone()
gtburstBin = progEnv.Program('gtburst', 'src/gtburst.cxx')
progEnv.Tool('registerTargets', package = 'pyBurstAnalysisGUI',
data = (listFiles(['data/*']) +
listFiles(['data/templates/*']) +
listFiles(['data/tcl_extensions/*']) +
listFiles(['data/tcl_extensions/fsdialog/*']) +
listFiles(['data/tcl_extensions/msgcat/*'])),
python = (listFiles(['python/*.py']) +
listFiles(['python/GtBurst/*.py']) +
listFiles(['python/GtBurst/aplpy/*.py']) +
listFiles(['python/GtBurst/commands/*.py']) +
listFiles(['python/GtBurst/gtapps_mp/*.py']) +
listFiles(['python/GtBurst/scripts/*.py']) +
listFiles(['python/GtBurst/tasks/*.py'])),
binaryCxts=[[gtburstBin, progEnv]])