Create symlinks on linux

This commit is contained in:
Philip Kristoffersen
2021-10-06 10:00:57 +02:00
parent 206d900ef1
commit 53021a177a
11 changed files with 109 additions and 12 deletions
+4 -1
View File
@@ -4,5 +4,8 @@ use serde::{Deserialize, Serialize};
pub struct GogSettings {
pub enabled: bool,
pub location: Option<String>,
pub wine_c_drive: Option<String>
pub wine_c_drive: Option<String>,
#[cfg(target_os = "linux")]
pub create_symlinks: bool,
}