| 41 | | lib_env.Append(CPPPATH=config_info.getIncPath(), |
|---|
| 42 | | LIBPATH=[inst_paths["lib_inst_combo"]] + config_info.getLibPath(), |
|---|
| 43 | | LIBS=dep_libs, |
|---|
| 44 | | FRAMEWORKPATH=config_info.getFrameworkPath(), |
|---|
| 45 | | FRAMEWORKS=config_info.getFrameworks()) |
|---|
| | 41 | lib_env.Prepend(CPPPATH=config_info.getIncPath(), |
|---|
| | 42 | LIBPATH=[inst_paths["lib_inst_combo"]] + config_info.getLibPath(), |
|---|
| | 43 | LIBS=dep_libs, |
|---|
| | 44 | FRAMEWORKPATH=config_info.getFrameworkPath(), |
|---|
| | 45 | FRAMEWORKS=config_info.getFrameworks()) |
|---|
| 92 | | test_env.Append(CPPPATH=library.test_cpppath + config_info.getIncPath(), |
|---|
| 93 | | LIBPATH=library.test_libpath + [inst_paths["lib_inst_combo"]] + config_info.getLibPath(), |
|---|
| 94 | | LIBS=config_info.getLibs() + library.other_test_libs, |
|---|
| 95 | | FRAMEWORKPATH=config_info.getFrameworkPath(), |
|---|
| 96 | | FRAMEWORKS=config_info.getFrameworks()) |
|---|
| | 92 | test_env.Prepend(CPPPATH=library.test_cpppath + config_info.getIncPath(), |
|---|
| | 93 | LIBPATH=library.test_libpath + [inst_paths["lib_inst_combo"]] + config_info.getLibPath(), |
|---|
| | 94 | LIBS=config_info.getLibs() + library.other_test_libs, |
|---|
| | 95 | FRAMEWORKPATH=config_info.getFrameworkPath(), |
|---|
| | 96 | FRAMEWORKS=config_info.getFrameworks()) |
|---|