summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.cargo/config.toml1
-rw-r--r--Cargo.toml13
-rw-r--r--assets/icon.pngbin0 -> 2041 bytes
3 files changed, 14 insertions, 0 deletions
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
--- /dev/null
+++ b/assets/icon.png
Binary files differ