mirror of
https://github.com/neosubhamoy/pytubepp-helper.git
synced 2026-02-04 19:32:21 +05:30
8 lines
201 B
Rust
8 lines
201 B
Rust
extern crate winresource;
|
|
|
|
fn main() {
|
|
if std::env::var("CARGO_CFG_TARGET_OS").unwrap() == "windows" {
|
|
let res = winresource::WindowsResource::new();
|
|
res.compile().unwrap();
|
|
}
|
|
} |