From bb3b897c16ee9ac0ada9aa3fc4428a89d1281b88 Mon Sep 17 00:00:00 2001 From: Samuel Nicholas Date: Thu, 28 May 2026 10:22:38 +0930 Subject: [PATCH] Issue reported to godot-cpp 1987 Missing quotes only processes the first doc source xml file. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index dde158d6..dd237113 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -59,7 +59,7 @@ file(GLOB_RECURSE DOC_XML LIST_DIRECTORIES NO CONFIGURE_DEPENDS "${PROJECT_SOURC # conditionally add doc data to compile output if(DOC_XML) if(GODOTCPP_TARGET MATCHES "editor|template_debug") - target_doc_sources(${LIBNAME} ${DOC_XML}) + target_doc_sources(${LIBNAME} "${DOC_XML}") endif() endif()