Skip to content

Commit 43b4f26

Browse files
committed
Fix missing quotes when passing XML doc sources in test CMake
1 parent 9ae5fc4 commit 43b4f26

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ target_sources(
1919
# conditionally add doc data to compile output
2020
if(GODOTCPP_TARGET MATCHES "editor|template_debug")
2121
file(GLOB_RECURSE DOC_XML LIST_DIRECTORIES NO CONFIGURE_DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/doc_classes/*.xml")
22-
target_doc_sources( ${TARGET_NAME} ${DOC_XML} )
22+
target_doc_sources( ${TARGET_NAME} "${DOC_XML}" )
2323
endif()
2424

2525
set(OUTPUT_DIR "${CMAKE_CURRENT_SOURCE_DIR}/project/bin/")

0 commit comments

Comments
 (0)