wfc-rs 0.3.0

Binding to the krychu/wfc C library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::env;

use cc;

fn main() {
    let mut build = cc::Build::new();
    let build = build.file("csrc/wfc.c");
    let build = build.include("csrc/");

    build.compile("wfc");
}