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 |
|
# Call the unit tests SConscript |
25 |
|
# 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 |
|
dep_lib = [libinstall+'/'+str(x) for x in lib] |
30 |
|
Export('dep_lib') |
31 |
|
|
32 |
# FIXME: OLD STUFF |
local_env.SConscript(dirs = ['#/escript/test'], build_dir='#/build/$PLATFORM/escript/test', duplicate=0) |
|
|
|
|
#Depends(escript_lib, esysUtils_lib) |
|