1 |
Import('*') |
Import('*') |
2 |
|
|
3 |
headers= Split("""CppUnitException.h |
src_dir = env.Dir('.').srcnode().abspath |
4 |
CppUnitTestNamespace.h |
|
5 |
Guards.h |
import os |
6 |
Test.h |
filenames = os.listdir(src_dir) |
7 |
TestCaller.h |
headers = [x for x in filenames if os.path.splitext(x)[1] in ['.h']] |
|
TestCase.h |
|
|
TestFailure.h |
|
|
TestResult.h |
|
|
TestRunner.h |
|
|
TestSuite.h |
|
|
TextTestResult.h |
|
|
estring.h""") |
|
8 |
|
|
9 |
include = Dir('CppUnitTest', esys_inc) |
include = Dir('CppUnitTest', esys_inc) |
10 |
env.Install( include, headers ) |
env.Install( include, headers ) |