From a04a106f09b89df081273176069d2a2877cfec65 Mon Sep 17 00:00:00 2001 From: a-maurice Date: Thu, 20 Nov 2025 17:55:08 -0800 Subject: [PATCH] [Firebase AI] Fix Imagen reference doc gathering --- firebaseai/CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/firebaseai/CMakeLists.txt b/firebaseai/CMakeLists.txt index 6a9ea7695..140290cf9 100644 --- a/firebaseai/CMakeLists.txt +++ b/firebaseai/CMakeLists.txt @@ -23,9 +23,11 @@ unity_pack_folder( PACK_PATH "Firebase/FirebaseAI" ) -# For documentation, get only the C# files at the top level, +# For documentation, get all C# files recursively, # which make up the public API. -file(GLOB firebase_firebaseai_doc_src "src/*.cs") +file(GLOB_RECURSE firebase_firebaseai_doc_src "src/*.cs") +# Filter out any files located in src/Internal +list(FILTER firebase_firebaseai_doc_src EXCLUDE REGEX "src/Internal/") unity_pack_documentation_sources(firebaseai DOCUMENTATION_SOURCES ${firebase_firebaseai_doc_src}