From c6a48bfdb2e6f7d6ec60eae8a022f26acf3fe460 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Wed, 4 Mar 2009 01:50:19 +0000 Subject: [PATCH] scons: add the paths specified for ICU_LIBS/INCLUDES --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 9a482c795..23aace4fc 100644 --- a/SConstruct +++ b/SConstruct @@ -481,7 +481,7 @@ if not env.GetOption('clean'): # Adding the required prerequisite library directories to the include path for # compiling and the library path for linking, respectively. - for required in ('BOOST', 'PNG', 'JPEG', 'TIFF','PROJ'): + for required in ('BOOST', 'PNG', 'JPEG', 'TIFF','PROJ','ICU'): inc_path = env['%s_INCLUDES' % required] lib_path = env['%s_LIBS' % required] env.AppendUnique(CPPPATH = inc_path)