From 317385fb6189b9b85729077ba054a26bca73f1cd Mon Sep 17 00:00:00 2001 From: Kengo Date: Sat, 29 Nov 2025 21:08:42 +0900 Subject: [PATCH] Fix code comment for _juce_link_optional_libraries --- extras/Build/CMake/JUCEUtils.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/Build/CMake/JUCEUtils.cmake b/extras/Build/CMake/JUCEUtils.cmake index 9c09161bcb..865c0946e4 100644 --- a/extras/Build/CMake/JUCEUtils.cmake +++ b/extras/Build/CMake/JUCEUtils.cmake @@ -257,7 +257,7 @@ endfunction() # updates the target's compile defs, which results in a recursion/circular-dependency. # Instead, we ask the user to explicitly request curl/webkit/StoreKit linking if they # know they need it. Otherwise, we won't link anything. -# See the NEEDS_CURL, NEEDS_WEB_BROWSER, and NEEDS_STORE_KIT options in the CMake/readme.md. +# See the NEEDS_CURL, NEEDS_WEB_BROWSER, and NEEDS_STORE_KIT options in the `docs/CMake API.md`. function(_juce_link_optional_libraries target) if((CMAKE_SYSTEM_NAME STREQUAL "Linux") OR (CMAKE_SYSTEM_NAME MATCHES ".*BSD")) get_target_property(needs_curl ${target} JUCE_NEEDS_CURL)