duku 0.2.1

A Rust crate for creating graphic experiences
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Oliver Berzs
// https://github.com/oberzs/duku

// Links in Vulkan Loader

use std::env;

fn main() {
    let manifest_dir = env::var("CARGO_MANIFEST_DIR").unwrap();

    println!("cargo:rustc-link-search={}/vulkan", manifest_dir);
    println!("cargo:rustc-link-lib=vulkan");
}