xcell 0.1.1

[XCell](https://github.com/oovm/XCell) command line tool
1
2
3
4
5
6
7
8
9
10
11
use std::io;

fn main() -> io::Result<()> {
    if cfg!(target_env = "msvc") {
        winres::WindowsResource::new()
            // This path can be absolute, or relative to your crate root.
            .set_icon("assets/icon.ico")
            .compile()?;
    }
    Ok(())
}