azure 0.27.0

Bindings to Mozilla's Moz2D library
Documentation
/* 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 http://mozilla.org/MPL/2.0/. */

extern crate cmake;
use std::env;

fn main() {
    let dst = cmake::Config::new(".").build();
    println!("cargo:rustc-link-search=native={}/lib", dst.display());

    let target = env::var("TARGET").unwrap();
    if target.contains("windows") {
        println!("cargo:rustc-link-lib=static=azure");
        println!("cargo:rustc-link-lib=uuid");
        if target.contains("gnu") {
            println!("cargo:rustc-link-lib=stdc++");
        }
    }
}