simengine 0.2.1

A plugin-based simulation engine runtime and plugin API
1
2
3
4
5
6
7
fn main() {
    if std::env::var("CARGO_CFG_TARGET_OS").unwrap() == "windows" {
        let mut res = winresource::WindowsResource::new();
        res.set_icon("icon.ico");
        res.compile().unwrap();
    }
}