Skip to content

Commit a04a106

Browse files
committed
[Firebase AI] Fix Imagen reference doc gathering
1 parent 0ba975e commit a04a106

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

firebaseai/CMakeLists.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,11 @@ unity_pack_folder(
2323
PACK_PATH "Firebase/FirebaseAI"
2424
)
2525

26-
# For documentation, get only the C# files at the top level,
26+
# For documentation, get all C# files recursively,
2727
# which make up the public API.
28-
file(GLOB firebase_firebaseai_doc_src "src/*.cs")
28+
file(GLOB_RECURSE firebase_firebaseai_doc_src "src/*.cs")
29+
# Filter out any files located in src/Internal
30+
list(FILTER firebase_firebaseai_doc_src EXCLUDE REGEX "src/Internal/")
2931
unity_pack_documentation_sources(firebaseai
3032
DOCUMENTATION_SOURCES
3133
${firebase_firebaseai_doc_src}

0 commit comments

Comments
 (0)