blob: 69cfd050e40b59a28ec76220464988c5bc2f7cb9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- core/src/window/settings.rs.orig 2025-09-19 07:04:16 UTC
+++ core/src/window/settings.rs
@@ -7,7 +7,7 @@ mod platform;
#[path = "settings/macos.rs"]
mod platform;
-#[cfg(target_os = "linux")]
+#[cfg(any(target_os = "linux", target_os = "freebsd"))]
#[path = "settings/linux.rs"]
mod platform;
@@ -19,6 +19,7 @@ mod platform;
target_os = "windows",
target_os = "macos",
target_os = "linux",
+ target_os = "freebsd",
target_arch = "wasm32"
)))]
#[path = "settings/other.rs"]
|