https://github.com/mupq/pqm4
Raw File
Tip revision: 662a62b6251a7c01397f61486696b7ce57612261 authored by Matthias J. Kannwischer on 14 September 2023, 07:30:46 UTC
Merge pull request #257 from mupq/dsprenkels-patch-citing
Tip revision: 662a62b
build_everything.py
#!/usr/bin/env python3
"""
Builds all of the binaries without flashing them.
"""
import sys

from interface import parse_arguments, get_platform
from mupq import mupq


if __name__ == "__main__":
    args, rest = parse_arguments()
    platform, settings = get_platform(args)
    with platform:
        mupq.BuildAll(settings).test_all(rest)
back to top