(subcommand)
| 642 | |
| 643 | |
| 644 | def add_cross_build_dir_option(subcommand): |
| 645 | subcommand.add_argument( |
| 646 | "--cross-build-dir", |
| 647 | action="store", |
| 648 | default=os.environ.get("CROSS_BUILD_DIR"), |
| 649 | dest="cross_build_dir", |
| 650 | help=( |
| 651 | "Path to the cross-build directory " |
| 652 | f"(default: {DEFAULT_CROSS_BUILD_DIR}). " |
| 653 | "Can also be set with the CROSS_BUILD_DIR environment variable.", |
| 654 | ), |
| 655 | ) |
| 656 | |
| 657 | |
| 658 | def main(): |
no test coverage detected
searching dependent graphs…