From 893502300c0206cf629ff4e9ed5b9327743ebd30 Mon Sep 17 00:00:00 2001 From: Kai Stevenson Date: Wed, 26 Aug 2026 21:05:53 -0700 Subject: .app target --- .cargo/config.toml | 1 + Cargo.toml | 13 +++++++++++++ assets/icon.png | Bin 0 -> 2041 bytes 3 files changed, 14 insertions(+) create mode 100644 assets/icon.png diff --git a/.cargo/config.toml b/.cargo/config.toml index 9e23ee1..1618967 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -2,3 +2,4 @@ profile-dev = "run --features profiler" profile = "run --release --features profiler" release = "run --release" +app = "bundle --release" diff --git a/Cargo.toml b/Cargo.toml index cd84554..d144c47 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,19 @@ name = "pxs" version = "0.1.0" edition = "2024" +[package.metadata.bundle] +name = "pxs" +identifier = "com.aberrantflux.pxs" +icon = ["assets/icon.png"] +version = "0.1.0" +copyright = "Copyright © 2026 Kai Stevenson. All rights reserved." +category = "Game" +short_description = "A physics game" +long_description = """ +A falling sand physics game with cells, particles, rigidbodies. +""" + + [dependencies] wgpu = "29.0.4" wgpu-types = "29.0.4" diff --git a/assets/icon.png b/assets/icon.png new file mode 100644 index 0000000..8f53c59 Binary files /dev/null and b/assets/icon.png differ -- cgit v1.3.1