| def build::newer | ( | source, | ||
| target | ||||
| ) |
| tuple build::_pfx86 = os.environ.get('ProgramFiles(x86)', os.environ['ProgramFiles']) |
[
check_prerequisites,
update_version_str,
compile_GME,
compile_meta,
compile_JBON,
compile_tools,
compile_samples,
zip_decorsamples,
zip_scriptSDK,
generate_meta_files,
generate_sample_files,
compile_GME_PGO_Instrument,
PGO_train,
compile_GME_PGO_Optimize,
build_msms,
build_msi,
zip_pdb,
publish,
tag_repository
]
| tuple build::end_step = len(build_steps) |
| list build::exclude_steps = [] |
| tuple build::GME_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..")) |
| tuple build::HFSM_XMP = os.path.join(paradigms_root, "HFSM", "HFSM.xmp") |
| list build::include_steps = [] |
| tuple build::METAGME_XMP = os.path.join(paradigms_root, "MetaGME", "MetaGME.xmp") |
| tuple build::paradigms_root = os.path.join(GME_ROOT, "Paradigms") |
| tuple build::SF_XMP = os.path.join(paradigms_root, "SF", "SF.xmp") |
| tuple build::start_step = 0 |
| tuple build::step = get_step(val) |
| tuple build::UML_XMP = os.path.join(paradigms_root, "UML", "UML.xmp") |
""" usage: %s [OPTION]... Build an installation image (msi) for GME. -h, --help display help (this message) and exit -v, --verbose verbose output (default: %s) -c, --clean clean projects before building them (default: %s) -s, --start=NUM start at build step 'NUM' (default: %d) -e, --end=NUM stop at build step 'NUM' (default: %d) -i, --include=NUM include build step 'NUM' explicitly -x, --exclude=NUM exclude build step 'NUM' explicitly -V, --version=MAJOR.MINOR.PATCHLEVEL.BUILD set version (default: %d.%d.%d.%d) -b, --build_version=BUILD set only the build version -a, --arch=ARCH set architecture (x64 or x86) \tBuild steps: \t%s """
1.6.3