1
1
mirror of https://github.com/neosubhamoy/pytubepp-helper.git synced 2026-02-04 19:32:21 +05:30

(first): initial commit

This commit is contained in:
2024-08-26 01:08:37 +05:30
Unverified
commit 1368f07bfe
60 changed files with 9513 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
extern crate winresource;
fn main() {
if std::env::var("CARGO_CFG_TARGET_OS").unwrap() == "windows" {
let res = winresource::WindowsResource::new();
res.compile().unwrap();
}
}