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
45
45
option (FIREBASE_INCLUDE_FUNCTIONS
46
46
"Include the Cloud Functions for Firebase library."
47
47
${FIREBASE_INCLUDE_LIBRARY_DEFAULT} )
48
+ option (FIREBASE_INCLUDE_INSTALLATIONS
49
+ "Include the Firebase Installations library."
50
+ ${FIREBASE_INCLUDE_LIBRARY_DEFAULT} )
48
51
option (FIREBASE_INCLUDE_INSTANCE_ID
49
52
"Include the Firebase Instance ID library."
50
53
${FIREBASE_INCLUDE_LIBRARY_DEFAULT} )
@@ -548,6 +551,9 @@ endif()
548
551
if (FIREBASE_INCLUDE_FUNCTIONS )
549
552
add_subdirectory (functions )
550
553
endif ()
554
+ if (FIREBASE_INCLUDE_INSTALLATIONS )
555
+ add_subdirectory (installations )
556
+ endif ()
551
557
if (FIREBASE_INCLUDE_INSTANCE_ID )
552
558
add_subdirectory (instance_id )
553
559
endif ()
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ set(ios_SRCS
28
28
29
29
# Source files used by the desktop implementation.
30
30
set (desktop_SRCS
31
- src/desktop /installations_stub.cc )
31
+ src/stub /installations_stub.cc )
32
32
33
33
if (ANDROID )
34
34
set (installations_platform_SRCS
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ include ':app',
14
14
' :firestore' ,
15
15
' :firestore:firestore_resources' ,
16
16
' :functions' ,
17
+ ' :installations' ,
17
18
' :instance_id' ,
18
19
' :messaging' ,
19
20
' :messaging:messaging_java' ,
You can’t perform that action at this time.
0 commit comments