wanderlust 0.2.3

A powerful Windows PATH cleaner and healer. Automatically discovers tools, removes duplicates, and ensures system stability.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # Build Script
//!
//! This script runs during the build process (before compilation).
//! Its primary job currently is to embed the Windows Application Manifest (`app.manifest`)
//! into the final executable.
//!
//! The manifest controls:
//! - DPI Awareness (High DPI support).
//! - User Account Control (UAC) behavior (requestedExecutionLevel).
//! - Windows Version Compatibility (identifying as Win10/11 compatible).

fn main() {
    // Embeds the 'app.manifest' file as a Windows resource.
    // We ignore the result because if it fails, the app still builds, just without the manifest.
    let _ = embed_resource::compile("app.manifest", embed_resource::NONE);
}