hum 0.5.0

A music notation language and synthesizer written in Rust.
1
2
3
4
5
6
7
8
9
10
#[cfg(windows)]
extern crate vcpkg;

fn main() {
    #[cfg(windows)]
    {
        std::env::set_var("VCPKGRS_DYNAMIC", "1");
        vcpkg::find_package("portaudio").unwrap();
    }
}