solitaire 0.0.1

A planning poker app, mostly developed to learn Rust
1
2
3
4
5
6
7
fn main() {
  if cfg!(target_os = "windows") {
    let mut res = winres::WindowsResource::new();
    res.set_icon("project/windows/app.ico");
    res.compile().unwrap();
  }
}