From 90c1a39231b2e87a0c5daa4d09cfb841647f6427 Mon Sep 17 00:00:00 2001 From: Misa Date: Mon, 15 May 2023 16:26:31 -0700 Subject: [PATCH] Remove UTF8-CPP from non-bundled dependencies UTF8-CPP was removed but Dav forgot to also remove it from dependencies if BUNDLE_DEPENDENCIES was disabled. --- desktop_version/CMakeLists.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/desktop_version/CMakeLists.txt b/desktop_version/CMakeLists.txt index 2bbc77ef..1cdf3752 100644 --- a/desktop_version/CMakeLists.txt +++ b/desktop_version/CMakeLists.txt @@ -343,9 +343,7 @@ if(BUNDLE_DEPENDENCIES) target_link_libraries(VVVVVV ${STATIC_LIBRARIES}) else() - find_package(utf8cpp CONFIG) - - target_link_libraries(VVVVVV ${STATIC_LIBRARIES} physfs tinyxml2 utf8cpp FAudio) + target_link_libraries(VVVVVV ${STATIC_LIBRARIES} physfs tinyxml2 FAudio) endif()