1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
diff --git a/vcpkg.json b/vcpkg.json
index d32fb707..ea114950 100644
--- a/vcpkg.json
+++ b/vcpkg.json
@@ -161,6 +161,32 @@
},
{
"name": "sdl3",
+ "platform": "linux",
+ "default-features": false,
+ "features": [
+ "x11",
+ "wayland"
+ ]
+ },
+ {
+ "name": "sdl3",
+ "platform": "freebsd | openbsd | netbsd | illumos",
+ "default-features": false,
+ "features": [
+ "x11"
+ ]
+ },
+ {
+ "name": "sdl3",
+ "platform": "darwin",
+ "default-features": false,
+ "features": [
+ "cocoa"
+ ]
+ },
+ {
+ "name": "sdl3",
+ "platform": "!(linux | freebsd | openbsd | netbsd | illumos | darwin)",
"default-features": false
},
"simdutf",
|