1
1
mirror of https://github.com/neosubhamoy/pytubepp-helper.git synced 2026-02-04 03:12:22 +05:30
Files
pytubepp-helper/src-tauri/msghost/build.rs
2024-08-26 01:08:37 +05:30

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();
}
}