awa5_rs 0.1.15

An AWA5.0 CLI tool written in Rust (btw)
1
2
3
4
5
6
7
8
9
10
extern crate cmake;
use cmake::Config;

fn main() {
    let dst = Config::new("lib_wasm").build();

    println!("cargo:rustc-link-search=native={}", dst.display());
    println!("cargo:rustc-link-lib=static=web_scene");
    println!("cargo:rustc-link-lib=static=raylib");
}