Beispiel #1
0
    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))
Beispiel #2
0
    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))
Beispiel #3
0
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)
Beispiel #4
0
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)