* refactor: Remove file locking functionality and associated references * refactor: Replace PathBuf with Path references across interfaces and remove redundant implementations * fix: UI missing "Comparison Mode" field, and set permission failed * refactor: Restructure core module into submodules for better organization * wip: Remove event system * refactor: Introduce actor model framework and reorganize module hierarchy * wip: Remove event system and restructure module hierarchy for actor-based architecture * refactor: Remove unused traits and modules, enhance GUI handling, and refine actor-driven architecture
16 lines
422 B
Rust
16 lines
422 B
Rust
#[cfg(target_os = "windows")]
|
|
fn main() {
|
|
let mut res = winres::WindowsResource::new();
|
|
res.set_icon("assets/icon.ico")
|
|
.set("InternalName", "MirrorSphere.exe")
|
|
.set_version_info(winres::VersionInfo::PRODUCTVERSION, 0x0001000000000000)
|
|
.set_language(0x0409);
|
|
if let Err(err) = res.compile() {
|
|
eprintln!("winres error: {err}");
|
|
}
|
|
}
|
|
|
|
#[cfg(target_os = "linux")]
|
|
fn main() {
|
|
}
|