--- brushlib/tests/SConscript.orig 2012-12-31 16:35:54 UTC +++ brushlib/tests/SConscript @@ -13,8 +13,9 @@ def is_test(fn): tests_sources = [fn for fn in os.listdir("./") if is_test(fn) and is_csource(fn)] testlib_sources = [fn for fn in os.listdir("./") if not is_test(fn) and is_csource(fn)] -testlib_env.Append(LIBS=['mypaint']) -testlib_env.Append(CPPPATH=['../'], LIBPATH=['../..']) +testlib_env.Append(LIBS=['intl', 'mypaint']) +testlib_env.Append(CPPPATH=['../']) +testlib_env.Prepend(LIBPATH=['../..']) if testlib_env['enable_gperftools']: testlib_env.ParseConfig('pkg-config --cflags --libs libprofiler')