mirror of https://github.com/ospab/ostp.git
32 lines
1.1 KiB
Rust
32 lines
1.1 KiB
Rust
// build.rs for ostp-tun-helper
|
|
// Embeds a Windows manifest that requests Administrator privileges.
|
|
// This makes Windows show a UAC prompt when the binary is double-clicked
|
|
// or launched via ShellExecuteW("runas").
|
|
|
|
fn main() {
|
|
#[cfg(windows)]
|
|
{
|
|
let mut res = winres::WindowsResource::new();
|
|
res.set_manifest(r#"
|
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
|
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
|
<security>
|
|
<requestedPrivileges>
|
|
<requestedExecutionLevel level="requireAdministrator" uiAccess="false"/>
|
|
</requestedPrivileges>
|
|
</security>
|
|
</trustInfo>
|
|
<dependency>
|
|
<dependentAssembly>
|
|
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls"
|
|
version="6.0.0.0" processorArchitecture="*"
|
|
publicKeyToken="6595b64144ccf1df" language="*"/>
|
|
</dependentAssembly>
|
|
</dependency>
|
|
</assembly>
|
|
"#);
|
|
res.compile().expect("failed to compile Windows resources");
|
|
}
|
|
}
|