blob: 552ab2612bad65eca7d9e2557dda005f773cd5ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#
# Conscript for installing auxiliary modules, external stuff that
# we keep checked in so everyone doesn't have to install a bunch
# of stuff to work on SCons.
#
Import qw( env );
@modules = qw(TestCmd.py TestSCons.py unittest.py);
foreach $module (@modules) {
for $dir ($env->{TEST1_LIB_DIR}, $env->{TEST2_LIB_DIR}) {
$env->Command(File::Spec->catfile($dir, $module), $module, "%SEDCOM");
}
}
|