geph4-client 4.99.2

Geph client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::{env, path::Path};

fn main() {
    if cfg!(windows) {
        let dir = env::var("CARGO_MANIFEST_DIR").unwrap();
        println!(
            "cargo:rustc-link-search=native={}",
            Path::new(&dir).join("windows-lib").display()
        );
        println!("cargo:rustc-link-lib=WinDivert");
    }
}