4 |
|
|
5 |
local_env=env.Copy() |
local_env=env.Copy() |
6 |
|
|
|
local_env.Append(LIBS=[ python_lib, boost_lib, 'finleycpp', 'escriptcpp', 'paso', 'esysUtils', 'CppUnitTest', scsl_libs, mkl_libs, umf_libs, sys_libs]) |
|
|
|
|
7 |
src_dir = local_env.Dir('.').srcnode().abspath |
src_dir = local_env.Dir('.').srcnode().abspath |
8 |
|
|
9 |
import os |
import os |
10 |
filenames = os.listdir(src_dir) |
filenames = os.listdir(src_dir) |
11 |
sources = [x for x in filenames if os.path.splitext(x)[1] in ['.cpp', '.c']] |
sources = [x for x in filenames if os.path.splitext(x)[1] in ['.cpp', '.c']] |
12 |
|
|
13 |
|
local_env.Append(LIBS=[ python_lib, boost_lib, 'finley', 'escript', 'paso', 'esysUtils', 'CppUnitTest', scsl_libs, mkl_libs, umf_libs, sys_libs]) |
14 |
|
|
15 |
program = local_env.Program(program_name, sources) |
program = local_env.Program(program_name, sources) |
16 |
|
|
17 |
Depends(program, dep_lib) |
Depends(program, dep_lib) |
18 |
|
|
|
# TODO: Need to decide on how the library paths etc are going to be handled |
|
|
# TODO: For now just install the program to the same location as the libraries so things can run at least |
|
|
test_install = local_env.Install(libinstall, program) |
|
|
|
|
19 |
#Add Unit Test to target alias |
#Add Unit Test to target alias |
20 |
|
|
21 |
env.Alias('build_tests', test_install) |
env.Alias('build_tests', program) |
22 |
|
|
23 |
# run the tests - but only if test_targets are stale |
# run the tests - but only if test_targets are stale |
24 |
local_env.RunUnitTest(program_name) |
local_env.RunUnitTest(program_name) |