summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-07-26 01:36:39 +0200
committermetamuffin <metamuffin@disroot.org>2024-07-26 01:36:39 +0200
commit28feb2a0109f0ca8d0a161671dd9ea8fc3269da1 (patch)
tree4aa44f8730d4dcb93d065ea12cbd6645783eaf0c
parent97dd6a4508aed2764ab7662c14263adc09a2c553 (diff)
downloadhurrycurry-28feb2a0109f0ca8d0a161671dd9ea8fc3269da1.tar
hurrycurry-28feb2a0109f0ca8d0a161671dd9ea8fc3269da1.tar.bz2
hurrycurry-28feb2a0109f0ca8d0a161671dd9ea8fc3269da1.tar.zst
feature to bundle sdl2
-rw-r--r--Cargo.lock1
-rw-r--r--pixel-client/Cargo.toml3
2 files changed, 4 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index e9124039..9a90d335 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1648,6 +1648,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "951deab27af08ed9c6068b7b0d05a93c91f0a8eb16b6b816a5e73452a43521d3"
dependencies = [
"cfg-if",
+ "cmake",
"libc",
"version-compare 0.1.1",
]
diff --git a/pixel-client/Cargo.toml b/pixel-client/Cargo.toml
index b3daf9b0..b0333d21 100644
--- a/pixel-client/Cargo.toml
+++ b/pixel-client/Cargo.toml
@@ -15,3 +15,6 @@ anyhow = "1.0.86"
clap = { version = "4.5.9", features = ["derive"] }
rustls = { version = "0.23.10", features = ["ring"] }
rand = "0.9.0-alpha.1"
+
+[features]
+bundle_sdl2 = ["sdl2/bundled"]