From 42baed281a6569ee8d5a5939f5997b25ad07ebc2 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sat, 1 Mar 2014 10:29:27 -0800 Subject: [PATCH] Rename test_cpppath -> test_gtest_include --- SConstruct | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SConstruct b/SConstruct index 5b7d355..fb9fc81 100644 --- a/SConstruct +++ b/SConstruct @@ -142,10 +142,10 @@ release_env = create_env('release', [src_dir], { }) test_gtest_dir = Dir('#lib/gtest') -test_cpppath = test_gtest_dir.Dir('include') +test_gtest_include = test_gtest_dir.Dir('include') test_env = create_env('test', [src_dir, test_dir, test_gtest_dir], { 'CPPDEFINES': ['DEBUG'], - 'CPPPATH': [test_cpppath], + 'CPPPATH': [test_gtest_include], 'LIBPATH': [test_gtest_dir], 'CFLAGS': debug_cflags, 'CXXFLAGS': debug_cflags,