-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.rs
21 lines (18 loc) · 903 Bytes
/
build.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// This is used to generate the pixel arrays for the program icon
// Too bad macroquad on linux doesn't support icons :|
// It does however appear when running a windows build through wine!! :3
use std::{env, fs::File, path::Path, io::Write};
fn main() {
let out_dir = env::var_os("OUT_DIR").expect("OUT_DIR not set");
let dest_path = Path::new(&out_dir).join("icon_data.rs");
let mut f = File::create(&dest_path).expect("Failed to create file");
for (name, path, size) in [
("SMALL", "resources/icon_small.png", 1024),
("MEDIUM", "resources/icon_medium.png", 4096),
("BIG", "resources/icon_big.png", 16384),
] {
let img = image::open(path).expect("Failed to open image");
let img_bytes = img.as_bytes();
write!(f, "pub const ICON_{}: [u8; {:?}] = {:?};", name, size, img_bytes).expect("Failed to write into image");
}
}