示例#1
0
文件: environment.py 项目: 4og/avango
    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))
示例#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))
示例#3
0
文件: __init__.py 项目: wobakj/avango
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)
示例#4
0
文件: __init__.py 项目: 4og/avango
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)