Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 868 Bytes

File metadata and controls

50 lines (41 loc) · 868 Bytes

How to build

Prerequisites

  • Flutter 3.11+ (with desktop support enabled)
  • For Linux: GTK 3.0+ development files
  • For AppImage builds: appimagetool

Linux

Using Make:

make build-linux       # Build Linux binary
make build-appimage    # Build AppImage for distribution
make run               # Run the app locally

Or with Flutter directly:

flutter pub get
flutter run -d linux
flutter build linux --release

AppImage

Build a portable Linux AppImage:

./scripts/build_appimage.sh

This creates dist/Ham_Net_Manager-*.AppImage.

See APPIMAGE_BUILD.md for details.

Windows

flutter build windows

Build msix app file:

.\scripts\build_msix.ps1

Build installer exe:

.\scripts\build_windows_installer.ps1

Web

flutter run -d Chrome