21 |
local_env.Install(include_path, headers ) |
local_env.Install(include_path, headers ) |
22 |
local_env.Install(libinstall, lib) |
local_env.Install(libinstall, lib) |
23 |
|
|
24 |
# FIXME: OLD STUFF |
# Call the unit tests SConscript |
25 |
#libs.extend(sys_libs) |
# export the lib target since tests will depend on it |
26 |
|
# the lib target is a list of file nodes (why? win32 produces more than one output file: .lib, .dll, .pdb) |
27 |
|
# FIXME: This list handling produces the desired result but can this be done directly with scons File nodes? |
28 |
|
|
29 |
#Depends(bruce_lib, esysUtils_lib) |
dep_lib = [libinstall+'/'+str(x) for x in lib] |
30 |
#Depends(bruce_lib, escript_lib) |
Export('dep_lib') |
31 |
|
|
32 |
|
local_env.SConscript(dirs = ['#/bruce/test'], build_dir='#/build/$PLATFORM/bruce/test', duplicate=0) |