From 3518a30489277a8fd76e754770212275ae1db7d8 Mon Sep 17 00:00:00 2001 From: Nikhil Narayana Date: Mon, 16 Sep 2024 21:52:02 -0700 Subject: [PATCH] fix rust building on windows (maybe others) --- Externals/SlippiRustExtensions | 2 +- Externals/corrosion | 2 +- Source/Core/Common/CMakeLists.txt | 2 +- Source/Core/DolphinNoGUI/CMakeLists.txt | 2 +- Source/Core/DolphinQt/CMakeLists.txt | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Externals/SlippiRustExtensions b/Externals/SlippiRustExtensions index 1e9fbf11479e..47d4ebf73ab4 160000 --- a/Externals/SlippiRustExtensions +++ b/Externals/SlippiRustExtensions @@ -1 +1 @@ -Subproject commit 1e9fbf11479e20cd07a75f67888c138c7893bc24 +Subproject commit 47d4ebf73ab4debc5cb06da5ce11a1af209ccdad diff --git a/Externals/corrosion b/Externals/corrosion index 19a288aed0af..64289b1d79d6 160000 --- a/Externals/corrosion +++ b/Externals/corrosion @@ -1 +1 @@ -Subproject commit 19a288aed0af1d7cb80ead48be5dda40bb978c5d +Subproject commit 64289b1d79d6d19cd2e241db515381a086bb8407 diff --git a/Source/Core/Common/CMakeLists.txt b/Source/Core/Common/CMakeLists.txt index dc10f986240c..01e8b07fb4ac 100644 --- a/Source/Core/Common/CMakeLists.txt +++ b/Source/Core/Common/CMakeLists.txt @@ -170,7 +170,7 @@ PUBLIC MbedTLS::mbedtls minizip::minizip sfml-network - slippi-rust-extensions + slippi_rust_extensions PRIVATE CURL::libcurl diff --git a/Source/Core/DolphinNoGUI/CMakeLists.txt b/Source/Core/DolphinNoGUI/CMakeLists.txt index e85204273d9b..0c24377b0b50 100644 --- a/Source/Core/DolphinNoGUI/CMakeLists.txt +++ b/Source/Core/DolphinNoGUI/CMakeLists.txt @@ -26,7 +26,7 @@ set_target_properties(dolphin-nogui PROPERTIES OUTPUT_NAME dolphin-emu-nogui) target_link_libraries(dolphin-nogui PUBLIC - slippi-rust-extensions + slippi_rust_extensions z PRIVATE core diff --git a/Source/Core/DolphinQt/CMakeLists.txt b/Source/Core/DolphinQt/CMakeLists.txt index 5ef526c51eff..028ea548a242 100644 --- a/Source/Core/DolphinQt/CMakeLists.txt +++ b/Source/Core/DolphinQt/CMakeLists.txt @@ -582,7 +582,7 @@ if(GETTEXT_MSGFMT_EXECUTABLE) endforeach() endif() -target_link_libraries(dolphin-emu PUBLIC slippi-rust-extensions) +target_link_libraries(dolphin-emu PUBLIC slippi_rust_extensions) if(APPLE) include(BundleUtilities)