Skip to content

Instantly share code, notes, and snippets.

@sakex
Created June 23, 2020 18:29
Show Gist options
  • Save sakex/d0f59a52f3faa79048645c145b650789 to your computer and use it in GitHub Desktop.
Save sakex/d0f59a52f3faa79048645c145b650789 to your computer and use it in GitHub Desktop.
// build.rs
extern crate cc;
fn main() {
cc::Build::new()
.cpp(true)
.include("cpp")
.file("cpp/Engine.cpp")
.file("cpp/bindings.cpp")
.cpp_link_stdlib("stdc++")
.warnings_into_errors(true)
.compile("gui");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment