mirror of
https://github.com/boostorg/build.git
synced 2026-02-16 01:12:13 +00:00
* new/common.jam (copy): New rule. * new/targets.jam (main-target.generate): Use a different algorith for selecting subvariant. Favour one with the longest intersection of requirements with build properties. * new/virtual-target.jam (virtual-target): Eliminate 'subvariant' attribute. Use properties of action to for the same purpose. New methods 'set-path' and 'extra-grist'. [SVN r16129]
35 lines
635 B
Python
35 lines
635 B
Python
#!/usr/bin/python
|
|
import os
|
|
|
|
# clear environment for testing
|
|
#
|
|
for s in (
|
|
'BOOST_ROOT','BOOST_BUILD_PATH','JAM_TOOLSET','BCCROOT',
|
|
'MSVCDir','MSVC','MSVCNT','MINGW','watcom'
|
|
):
|
|
|
|
try:
|
|
del os.environ[s]
|
|
except:
|
|
pass
|
|
|
|
import unit_tests
|
|
import startup_v1
|
|
import startup_v2
|
|
import project_test1
|
|
import project_test3
|
|
import project_test4
|
|
import generators_test
|
|
import dependency_test
|
|
import direct_request_test
|
|
import path_features
|
|
import relative_sources
|
|
import no_type
|
|
import chain
|
|
import default_build
|
|
import main_properties
|
|
import use_requirements
|
|
import conditionals
|
|
import stage
|
|
import prebuilt
|