mirror of
https://github.com/agersant/polaris
synced 2024-11-10 10:14:12 +00:00
4ad8d922f7
* Use native-windows-gui crate to manage tray icon Adds log file support on Windows * Log file location now works like other paths * Removed context builder * Context --> App * Removed mount URLs from App * Switch to a nicer crate for forking daemon * Handle errors from notify_ready * Add application icon to all Windows Polaris executables, not just those created by the release script * Add build.rs to release tarball * Create PID file parent directory if necessary
9 lines
194 B
Rust
9 lines
194 B
Rust
#[cfg(windows)]
|
|
fn main() {
|
|
let mut res = winres::WindowsResource::new();
|
|
res.set_icon("./res/windows/application/icon_polaris_512.ico");
|
|
res.compile().unwrap();
|
|
}
|
|
|
|
#[cfg(unix)]
|
|
fn main() {}
|