Skip to content

Commit

Permalink
VCPKG: don't build SDL2 with dbus when cross-compiling
Browse files Browse the repository at this point in the history
Due to a bug in DBUS and its VCPKG port (microsoft/vcpkg#40031), DBUS cannot be cross-compiled.
  • Loading branch information
Lgt2x committed Oct 27, 2024
1 parent 7c29022 commit 887557a
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,23 @@
"gtest",
"plog",
"zlib",
{
"name": "sdl2",
"version>=": "2.30.3",
"features": ["x11","wayland", "alsa", "ibus"],
"platform": "(linux & !native)",
"default-features": false
},
{
"name": "sdl2",
"version>=": "2.30.3",
"features": ["x11","wayland", "alsa"],
"platform": "linux"
"platform": "(linux & native)"
},
{
"name": "sdl2",
"version>=": "2.30.3",
"platform": "!linux"
},
{
"name": "sdl2",
Expand Down

0 comments on commit 887557a

Please sign in to comment.