poe_bundle 0.1.2

Library for extracting Oodle bundles used by the game Path of Exile
Documentation
1
2
3
4
5
6
7
8
9
10
use cmake::Config;

fn main() {
    let dst = Config::new("ooz")
        .build_target("libooz")
        .build();

    println!("cargo:rustc-link-search=native={}", format!("{}/build", dst.display()));
    println!("cargo:rustc-link-lib=static=libooz");
}