File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,9 @@ option(FIREBASE_INCLUDE_FIRESTORE
4545option (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} )
4851option (FIREBASE_INCLUDE_INSTANCE_ID
4952 "Include the Firebase Instance ID library."
5053 ${FIREBASE_INCLUDE_LIBRARY_DEFAULT} )
@@ -548,6 +551,9 @@ endif()
548551if (FIREBASE_INCLUDE_FUNCTIONS)
549552 add_subdirectory (functions)
550553endif ()
554+ if (FIREBASE_INCLUDE_INSTALLATIONS)
555+ add_subdirectory (installations)
556+ endif ()
551557if (FIREBASE_INCLUDE_INSTANCE_ID)
552558 add_subdirectory (instance_id)
553559endif ()
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ set(ios_SRCS
2828
2929# Source files used by the desktop implementation.
3030set (desktop_SRCS
31- src/desktop /installations_stub.cc)
31+ src/stub /installations_stub.cc)
3232
3333if (ANDROID)
3434 set (installations_platform_SRCS
Original file line number Diff line number Diff 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' ,
You can’t perform that action at this time.
0 commit comments