Skip to content

Commit

Permalink
Generate simpleservo.h
Browse files Browse the repository at this point in the history
  • Loading branch information
paulrouget committed Feb 15, 2019
1 parent d029b1a commit 792ed8a
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions ports/libsimpleservo/capi/Cargo.toml
Expand Up @@ -17,6 +17,9 @@ simpleservo = { path = "../api" }
log = "0.4"
env_logger = "0.6"

[build-dependencies]
cbindgen = "0.8"

[features]
default = ["unstable", "default-except-unstable"]
default-except-unstable = ["webdriver", "max_log_level"]
Expand Down
18 changes: 18 additions & 0 deletions ports/libsimpleservo/capi/build.rs
@@ -0,0 +1,18 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */

use std::env;

fn main() {
let crate_dir = env::var("CARGO_MANIFEST_DIR").unwrap();
let target_dir = env::var("CARGO_TARGET_DIR").unwrap();
let profile_dir = env::var("PROFILE").unwrap();
let dest = format!("{}/{}/{}", target_dir, profile_dir, "simpleservo.h");
cbindgen::Builder::new()
.with_crate(crate_dir)
.with_language(cbindgen::Language::C)
.generate()
.expect("Unable to generate bindings")
.write_to_file(dest);
}

0 comments on commit 792ed8a

Please sign in to comment.