Page MenuHomec4science

SConscript
No OneTemporary

File Metadata

Created
Mon, May 6, 09:20

SConscript

from os.path import join
Import('main_env')
test_files = Split("""
run_tests.sh
test_hertz_pressure.py
test_westergaard.py
test_fractal.py
test_fractal.verified
test_hertz_disp.py
test_hertz_adhesion.py
test_hertz_kato.py
""")
src_dir = "#/tests"
build_dir = 'build-' + main_env['build_type'] + '/tests'
for file in test_files:
source = join(src_dir, file)
Command(file, source, Copy("$TARGET", "$SOURCE"))

Event Timeline