CompileKaiOS2Command constructor

CompileKaiOS2Command()

Implementation

CompileKaiOS2Command() {
  argParser.addOption(
    'output',
    abbr: 'o',
    help: 'Specify the output path for saving the compiled application.',
  );

  argParser.addFlag(
    'omnisd',
    help: 'Compile for OmniSD.',
    defaultsTo: false,
    negatable: false,
  );
}