You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
266 B
Python

Import('*')
env.AppendUnique(CPPPATH = ['#/test', '#/src'])
qd_libs = [
env['PRJ_LIBS']['qdecimal'],
env['PRJ_LIBS']['decnumber']
]
env.AppendUnique(LIBS = qd_libs)
exe = env.Program('qdecimal_test', Glob('*.cc'))
env['PRJ_TSTS']['qdecimal_test'] = exe