FPS 0.0.3

Flow processing system (under construction).
1
2
3
4
5
6
7
8
extern crate gcc;

fn main() {
    gcc::Config::new()                
                .file("c_test/test.c")
                .include("include")
                .compile("lib_c_extern_test.a");
}