21 lines
597 B
Python
21 lines
597 B
Python
import os
|
|
import glob
|
|
from copy import copy
|
|
|
|
Import ('env')
|
|
|
|
test_env = env.Clone()
|
|
|
|
headers = env['CPPPATH']
|
|
|
|
libraries = copy(env['LIBMAPNIK_LIBS'])
|
|
libraries.append('mapnik')
|
|
|
|
test_env.Append(CXXFLAGS='-g')
|
|
|
|
for cpp_test in glob.glob('*_test.cpp'):
|
|
test_program = test_env.Program(cpp_test.replace('.cpp','-bin'), [cpp_test], CPPPATH=headers, LIBS=libraries, LINKFLAGS=env['CUSTOM_LDFLAGS'])
|
|
Depends(test_program, env.subst('../../src/%s' % env['MAPNIK_LIB_NAME']))
|
|
# build locally if installing
|
|
if 'install' in COMMAND_LINE_TARGETS:
|
|
env.Alias('install',test_program)
|