use vcpkg

This commit is contained in:
open-trade 2020-10-27 23:58:11 +08:00
parent 96ba663104
commit 11cf3a8c18
5 changed files with 85 additions and 5 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "magnum-opus"
version = "0.3.2"
version = "0.3.3"
authors = ["Tad Hardesty <tad@platymuus.com>", "Sergey Duck <sergeypechnikov326@gmail.com>"]
edition = "2018"
description = "Safe Rust bindings for libopus"
@ -13,6 +13,7 @@ categories = ["api-bindings", "encoding", "compression",
repository = "https://github.com/DuckerMan/magnum-opus"
documentation = "https://docs.rs/magnum-opus"
[dependencies]
opusic-sys = "0.3"
libc = "0.2"
[build-dependencies]
vcpkg = "0.2"
target_build_utils = "0.3"
bindgen = "0.53"

71
build.rs Normal file
View File

@ -0,0 +1,71 @@
use std::{
env,
path::{Path, PathBuf},
};
fn find_package(name: &str) -> vcpkg::Library {
let mut cfg = vcpkg::Config::new();
cfg.emit_includes(true);
let mut res = cfg.find_package(name);
if res.is_err() {
let target = {
if cfg!(windows) {
":x64-windows-static"
} else {
""
}
};
std::process::Command::new("vcpkg")
.arg("install")
.arg(format!("{}{}", name, target))
.status()
.unwrap();
res = cfg.find_package(name);
}
res.unwrap()
}
fn generate_bindings(ffi_header: &Path, include_paths: &[PathBuf], ffi_rs: &Path) {
#[derive(Debug)]
struct ParseCallbacks;
impl bindgen::callbacks::ParseCallbacks for ParseCallbacks {
fn int_macro(&self, name: &str, _value: i64) -> Option<bindgen::callbacks::IntKind> {
if name.starts_with("OPUS") {
Some(bindgen::callbacks::IntKind::Int)
} else {
None
}
}
}
let mut b = bindgen::Builder::default()
.header(ffi_header.to_str().unwrap())
.parse_callbacks(Box::new(ParseCallbacks))
.generate_comments(false);
for dir in include_paths {
b = b.clang_arg(format!("-I{}", dir.display()));
}
b.generate().unwrap().write_to_file(ffi_rs).unwrap();
}
fn gen_opus() {
let includes = find_package("opus").include_paths;
let src_dir = env::var_os("CARGO_MANIFEST_DIR").unwrap();
let src_dir = Path::new(&src_dir);
let out_dir = env::var_os("OUT_DIR").unwrap();
let out_dir = Path::new(&out_dir);
let ffi_header = src_dir.join("opus_ffi.h");
println!("rerun-if-changed={}", ffi_header.display());
for dir in &includes {
println!("rerun-if-changed={}", dir.display());
}
let ffi_rs = out_dir.join("opus_ffi.rs");
generate_bindings(&ffi_header, &includes, &ffi_rs);
}
fn main() {
gen_opus()
}

1
opus_ffi.h Normal file
View File

@ -0,0 +1 @@
#include <opus/opus_multistream.h>

View File

@ -12,7 +12,8 @@
//! the [libopus documentation](https://opus-codec.org/docs/opus_api-1.1.2/).
#![warn(missing_docs)]
extern crate opusic_sys as ffi;
mod opus_ffi;
use opus_ffi as ffi;
use std::ffi::CStr;

6
src/opus_ffi.rs Normal file
View File

@ -0,0 +1,6 @@
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(dead_code)]
include!(concat!(env!("OUT_DIR"), "/opus_ffi.rs"));