wcpopup 0.6.3

Context menu for Windows and Linux
Documentation
1
2
3
4
5
6
7
8
9
10
use std::{env, path::PathBuf};

fn main() {
    println!("cargo::rerun-if-changed=build.rs");

    if cfg!(feature = "webview") && cfg!(windows) {
        let dll_src = PathBuf::from(env::var("DEP_WCPOPUPHOOK_DLL").unwrap());
        println!("cargo:rustc-env=WIN_HOOK_DLL={}", dll_src.display());
    }
}