Fix: Remove redundant 'asio' library name from CMake linking when using vcpkg.

This commit is contained in:
AorsiniYT
2025-12-01 16:52:50 -06:00
parent ae26f3f573
commit 851f3154ce

View File

@@ -74,7 +74,7 @@ if (NOT ONLY_SLEEPY_DISCORD)
if(USE_ASIO)
if(SLEEPY_VCPKG)
list(APPEND LIBRARIES_TO_LINK "asio asio::asio")
list(APPEND LIBRARIES_TO_LINK "asio::asio")
else()
list(APPEND LIBRARIES_INCLUDE_DIRS "${asio_SOURCE_DIR}/asio/include")
endif()