Skip to content

Commit 2026f49

Browse files
committed
Add Installations to the copybara and build logic
PiperOrigin-RevId: 347706043
1 parent 70e9e44 commit 2026f49

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CMakeLists.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ option(FIREBASE_INCLUDE_FIRESTORE
4545
option(FIREBASE_INCLUDE_FUNCTIONS
4646
"Include the Cloud Functions for Firebase library."
4747
${FIREBASE_INCLUDE_LIBRARY_DEFAULT})
48+
option(FIREBASE_INCLUDE_INSTALLATIONS
49+
"Include the Firebase Installations library."
50+
${FIREBASE_INCLUDE_LIBRARY_DEFAULT})
4851
option(FIREBASE_INCLUDE_INSTANCE_ID
4952
"Include the Firebase Instance ID library."
5053
${FIREBASE_INCLUDE_LIBRARY_DEFAULT})
@@ -428,6 +431,9 @@ endif()
428431
if (FIREBASE_INCLUDE_FUNCTIONS)
429432
add_subdirectory(functions)
430433
endif()
434+
if (FIREBASE_INCLUDE_INSTALLATIONS)
435+
add_subdirectory(installations)
436+
endif()
431437
if (FIREBASE_INCLUDE_INSTANCE_ID)
432438
add_subdirectory(instance_id)
433439
endif()

installations/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ set(ios_SRCS
2828

2929
# Source files used by the desktop implementation.
3030
set(desktop_SRCS
31-
src/desktop/installations_stub.cc)
31+
src/stub/installations_stub.cc)
3232

3333
if(ANDROID)
3434
set(installations_platform_SRCS

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ include ':app',
1414
':firestore',
1515
':firestore:firestore_resources',
1616
':functions',
17+
':installations',
1718
':instance_id',
1819
':messaging',
1920
':messaging:messaging_java',

0 commit comments

Comments
 (0)