def add_library(cls, library): """Prepends to libraries of the given dependency to the globale state. *Note* that this method should be used very sparingly. The only real use is to configure the TestEnvironment in the top-level "SConstruct" file.""" cls._path_manager.prepend_global_libraries(_config_store.get_libraries(library))
def add_library(cls, library): """Prepends to libraries of the given dependency to the globale state. *Note* that this method should be used very sparingly. The only real use is to configure the TestEnvironment in the top-level "SConstruct" file.""" cls._path_manager.prepend_global_libraries( _config_store.get_libraries(library))
def add_library(env, library): """Add the libraries from the named dependency to the given enviroment.""" libs = _config_store.get_libraries(library) env.Prepend(LIBS=libs)
def add_library(env, library): """Add the libraries from the named dependency to the given enviroment.""" libs = _config_store.get_libraries(library) env.Prepend(LIBS = libs)