-
Notifications
You must be signed in to change notification settings - Fork 654
/
Copy pathbuild.rs
27 lines (22 loc) · 1.08 KB
/
build.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright © SixtyFPS GmbH <[email protected]>
// SPDX-License-Identifier: MIT
fn main() -> std::io::Result<()> {
#[allow(unused)]
let mut board_config_path: Option<std::path::PathBuf> = None;
cfg_if::cfg_if! {
if #[cfg(feature = "pico-st7789")] {
board_config_path = Some([env!("CARGO_MANIFEST_DIR"), "pico_st7789", "board_config.toml"].iter().collect());
} else if #[cfg(feature = "pico2-st7789")] {
board_config_path = Some([env!("CARGO_MANIFEST_DIR"), "pico2_st7789", "board_config.toml"].iter().collect());
} else if #[cfg(feature = "stm32h735g")] {
board_config_path = Some([env!("CARGO_MANIFEST_DIR"), "stm32h735g", "board_config.toml"].iter().collect());
} else if #[cfg(feature = "stm32u5g9j-dk2")] {
board_config_path = Some([env!("CARGO_MANIFEST_DIR"), "stm32u5g9j_dk2", "board_config.toml"].iter().collect());
}
}
if let Some(path) = board_config_path {
println!("cargo:BOARD_CONFIG_PATH={}", path.display())
}
println!("cargo:EMBED_TEXTURES=1");
Ok(())
}