File: SConscript

package info (click to toggle)
opendrop 3.3.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 26,940 kB
  • sloc: python: 18,944; cpp: 1,031; makefile: 25; sh: 7
file content (15 lines) | stat: -rw-r--r-- 326 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Import('env')


env = env.Clone()
env.Append(
    LIBS=['boost_unit_test_framework'],
    CPPDEFINES=['BOOST_TEST_DYN_LINK'],
)

tests = [
    env.Program('test_interpolate.cpp'),
    env.Program('test_younglaplace.cpp', LIBS=env['LIBS']+['sundials_core', 'sundials_arkode', 'sundials_nvecserial', 'mpi']),
]

Return('tests')