mirror of
https://github.com/microsoft/edit.git
synced 2025-08-04 19:08:31 +00:00
13 lines
426 B
Rust
13 lines
426 B
Rust
fn main() {
|
|
if std::env::var("CARGO_CFG_TARGET_OS").unwrap_or_default() == "windows" {
|
|
winres::WindowsResource::new()
|
|
.set_manifest_file("src/edit.exe.manifest")
|
|
.set("FileDescription", "Microsoft Edit")
|
|
.set(
|
|
"LegalCopyright",
|
|
"© Microsoft Corporation. All rights reserved.",
|
|
)
|
|
.compile()
|
|
.unwrap();
|
|
}
|
|
}
|