fix #1858
This commit is contained in:
parent
95d5b73d86
commit
23878cf03e
2 changed files with 41 additions and 41 deletions
|
@ -1867,10 +1867,9 @@ if not HELP_REQUESTED:
|
|||
SConscript('fonts/build.py')
|
||||
|
||||
# build C++ tests
|
||||
if env['CPP_TESTS']:
|
||||
SConscript('tests/cpp_tests/build.py')
|
||||
|
||||
if env['SVG_RENDERER']:
|
||||
if env['CPP_TESTS'] and env['SVG_RENDERER']:
|
||||
SConscript('tests/cpp_tests/svg_renderer_tests/build.py')
|
||||
|
||||
if env['BENCHMARK']:
|
||||
|
|
|
@ -6,18 +6,19 @@ Import ('env')
|
|||
|
||||
test_env = env.Clone()
|
||||
|
||||
test_env['LIBS'] = copy(env['LIBMAPNIK_LIBS'])
|
||||
test_env.AppendUnique(LIBS='mapnik')
|
||||
test_env.AppendUnique(LIBS='sqlite3')
|
||||
test_env.AppendUnique(CXXFLAGS='-g')
|
||||
|
||||
test_env['CXXFLAGS'] = copy(test_env['LIBMAPNIK_CXXFLAGS'])
|
||||
|
||||
if test_env['HAS_CAIRO']:
|
||||
if not env['CPP_TESTS']:
|
||||
for cpp_test_bin in glob.glob('*-bin'):
|
||||
os.unlink(cpp_test_bin)
|
||||
else:
|
||||
test_env['LIBS'] = copy(env['LIBMAPNIK_LIBS'])
|
||||
test_env.AppendUnique(LIBS='mapnik')
|
||||
test_env.AppendUnique(LIBS='sqlite3')
|
||||
test_env.AppendUnique(CXXFLAGS='-g')
|
||||
test_env['CXXFLAGS'] = copy(test_env['LIBMAPNIK_CXXFLAGS'])
|
||||
if test_env['HAS_CAIRO']:
|
||||
test_env.PrependUnique(CPPPATH=test_env['CAIRO_CPPPATHS'])
|
||||
test_env.Append(CPPDEFINES = '-DHAVE_CAIRO')
|
||||
|
||||
for cpp_test in glob.glob('*_test.cpp'):
|
||||
for cpp_test in glob.glob('*_test.cpp'):
|
||||
name = cpp_test.replace('.cpp','-bin')
|
||||
source_files = [cpp_test]
|
||||
test_program = None
|
||||
|
|
Loading…
Reference in a new issue