scons: disable special handling of agg test, uneeded except for specific dev

This commit is contained in:
Dane Springmeyer 2013-04-19 11:17:43 -07:00
parent 83eb8f2595
commit 1ae236c176

View file

@ -21,7 +21,9 @@ for cpp_test in glob.glob('*_test.cpp'):
name = cpp_test.replace('.cpp','-bin')
source_files = [cpp_test]
test_program = None
if 'agg_blend_src_over_test' in cpp_test:
# enable for faster compile while developing just this test
#if 'agg_blend_src_over_test' in cpp_test:
if False:
# customization here for faster compile
agg_env = Environment(ENV=os.environ)
agg_env['CXX'] = env['CXX']