mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-12-08 16:27:31 +00:00
24 lines
563 B
Dart
24 lines
563 B
Dart
import 'package:args/command_runner.dart';
|
|
|
|
import 'build/android.dart';
|
|
import 'build/ios.dart';
|
|
import 'build/linux.dart';
|
|
import 'build/macos.dart';
|
|
import 'build/windows.dart';
|
|
|
|
class BuildCommand extends Command {
|
|
@override
|
|
String get description => "Build for different platforms";
|
|
|
|
@override
|
|
String get name => "build";
|
|
|
|
BuildCommand() {
|
|
addSubcommand(AndroidBuildCommand());
|
|
addSubcommand(IosBuildCommand());
|
|
addSubcommand(LinuxBuildCommand());
|
|
addSubcommand(MacosBuildCommand());
|
|
addSubcommand(WindowsBuildCommand());
|
|
}
|
|
}
|