mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
13 lines
335 B
Python
13 lines
335 B
Python
CxxTestBuilder_path = '../../build_tools/SCons/cxxtest.py'
|
|
CxxTest_dir = '../..'
|
|
|
|
# First a little python magic to pull in CxxTestBuilder
|
|
import imp
|
|
cxxtest = imp.load_source('cxxtest', CxxTestBuilder_path)
|
|
env = Environment()
|
|
cxxtest.generate(env, CXXTEST_INSTALL_DIR=CxxTest_dir)
|
|
|
|
for test in env.Glob('*.t.h'):
|
|
env.CxxTest(test)
|
|
|