DRP_Creative/build.rs

11 lines
164 B
Rust
Raw Normal View History

2022-09-08 19:04:09 +00:00
#[cfg(windows)]
extern crate windres;
#[cfg(windows)]
2022-09-08 18:33:18 +00:00
use windres::Build;
2022-09-08 19:04:09 +00:00
#[cfg(windows)]
2022-09-08 18:33:18 +00:00
fn main() {
Build::new().compile("./icon/tray-icon.rc").unwrap();
}