8 lines
160 B
Rust
8 lines
160 B
Rust
#[cfg(target_os = "windows")]
|
|
fn main() {
|
|
embed_resource::compile("resources.rc", embed_resource::NONE);
|
|
}
|
|
|
|
#[cfg(not(target_os = "windows"))]
|
|
fn main() {}
|