Skip to content

Commit 472cb85

Browse files
committed
Add Installations to the copybara and build logic
PiperOrigin-RevId: 347706043
1 parent effd39f commit 472cb85

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})
@@ -548,6 +551,9 @@ endif()
548551
if (FIREBASE_INCLUDE_FUNCTIONS)
549552
add_subdirectory(functions)
550553
endif()
554+
if (FIREBASE_INCLUDE_INSTALLATIONS)
555+
add_subdirectory(installations)
556+
endif()
551557
if (FIREBASE_INCLUDE_INSTANCE_ID)
552558
add_subdirectory(instance_id)
553559
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)