wasmer-win-exception-handler 0.17.1

Wasmer runtime exception handling for Windows
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() {
    if std::env::var("CARGO_CFG_TARGET_OS").expect("TARGET_OS not specified") != "windows" {
        return;
    }

    cc::Build::new()
        .include("exception_handling")
        .file("exception_handling/exception_handling.c")
        .compile("exception_handling");
}