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} )
@@ -428,6 +431,9 @@ endif()
428
431
if (FIREBASE_INCLUDE_FUNCTIONS )
429
432
add_subdirectory (functions )
430
433
endif ()
434
+ if (FIREBASE_INCLUDE_INSTALLATIONS )
435
+ add_subdirectory (installations )
436
+ endif ()
431
437
if (FIREBASE_INCLUDE_INSTANCE_ID )
432
438
add_subdirectory (instance_id )
433
439
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