| 12345678910111213141516171819202122232425262728293031323334353637 |
- """Compile a QMK Firmware.
- You can compile a keymap already in the repo or using a QMK Configurator export.
- """
- from subprocess import DEVNULL
- from argcomplete.completers import FilesCompleter
- from dotty_dict import dotty
- from milc import cli
- import qmk.path
- from qmk.decorators import automagic_keyboard, automagic_keymap
- from qmk.commands import do_compile
- from qmk.keyboard import keyboard_completer, is_keyboard_target
- from qmk.keymap import keymap_completer
- @cli.argument('filename', nargs='?', arg_only=True, type=qmk.path.FileType('r'), completer=FilesCompleter('.json'), help='The configurator export to compile')
- @cli.argument('-t', '--target', help="The make target to run. By default it compiles the keyboard only.")
- @cli.argument('-kb', '--keyboard', type=is_keyboard_target, completer=keyboard_completer, help='The keyboard to build a firmware for. Ignored when a configurator export is supplied.')
- @cli.argument('-km', '--keymap', completer=keymap_completer, help='The keymap to build a firmware for. Ignored when a configurator export is supplied.')
- @cli.argument('-n', '--dry-run', arg_only=True, action='store_true', help="Don't actually build, just show the make command to be run.")
- @cli.argument('-j', '--parallel', type=int, default=1, help="Set the number of parallel make jobs to run.")
- @cli.argument('-f', '--filter', arg_only=True, action='append', default=[], help="Filter your list against info.json.")
- @cli.argument('-e', '--env', arg_only=True, action='append', default=[], help="Set a variable to be passed to make. May be passed multiple times.")
- @cli.argument('-c', '--clean', arg_only=True, action='store_true', help="Remove object files before compiling.")
- @cli.subcommand('Compile a QMK Firmware.')
- @automagic_keyboard
- @automagic_keymap
- def compile(cli):
- """Compile a QMK Firmware.
- If a Configurator export is supplied this command will create a new keymap, overwriting an existing keymap if one exists.
- If a keyboard and keymap are provided this command will build a firmware based on that.
- """
- do_compile(cli.config.compile.keyboard, cli.config.compile.keymap, cli.config.compile.parallel, cli.config.compile.target)
|