rpack_egui 0.3.0

GUI application for generating rpack atlases
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
format_bundle := if os() == "windows" { "--format wxsmsi" } else { if os() == "linux" { "--format appimage" } else { "--format osx" }  }

# list available commands
list:
	just --list

make_win_icon:
    convert static/base_icon.png -define icon:auto-resize=16,24,32,48,64,128,256,512 static/icon.ico

create_mac_installer: bundle
    pkgbuild --install-location /Applications --component ../../target/release/bundle/osx/Rpack.app ../../target/release/bundle/osx/Rpack.pkg

# Create the installer using cargo-bundler
bundle:
    cargo bundler -r {{format_bundle}}