14 lines
505 B
Rust
14 lines
505 B
Rust
// use embed_manifest::{embed_manifest, manifest::ExecutionLevel, new_manifest};
|
|
|
|
fn main() {
|
|
// if std::env::var_os("CARGO_CFG_WINDOWS").is_some() {
|
|
// embed_manifest(
|
|
// new_manifest("RocknStone")
|
|
// .requested_execution_level(ExecutionLevel::HighestAvailable)
|
|
// .ui_access(true),
|
|
// )
|
|
// .expect("unable to embed manifest file");
|
|
// }
|
|
// println!("cargo:rerun-if-changed=build.rs");
|
|
}
|