fn main() {
#[cfg(windows)]
{
let mut res = winresource::WindowsResource::new();
res.set_icon("resources/icon.ico");
res.compile().unwrap();
let _ = embed_resource::compile_for(
"resources/quincy-client-daemon.rc",
["quincy-client-daemon"],
embed_resource::NONE,
);
}
}