quincy-gui 3.0.3

QUIC-based VPN - GUI client and daemon
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
fn main() {
    #[cfg(windows)]
    {
        // Set icon for all binaries
        let mut res = winresource::WindowsResource::new();
        res.set_icon("resources/icon.ico");
        res.compile().unwrap();

        // Embed UAC manifest only for the daemon binary
        let _ = embed_resource::compile_for(
            "resources/quincy-client-daemon.rc",
            ["quincy-client-daemon"],
            embed_resource::NONE,
        );
    }
}