unpak 1.0.5

a no-nonsense unreal pak parsing crate
Documentation
1
2
3
4
5
6
7
8
9
fn main() {
    #[cfg(feature = "oodle")]
    println!(
        "cargo:rustc-link-search={}",
        std::env::var("OODLE").unwrap_or_else(|_| panic!(r"to use the oodle feature set the OODLE variable to a folder containing the oodle static libraries (these can be obtained from any unreal engine install above 4.27 in Engine\Source\Runtime\OodleDataCompression\Sdks\2.9.8)"))
    );
    #[cfg(feature = "oodle")]
    println!("cargo:rustc-link-search=oodle");
}