Skip to content

Add Installations to the build #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 8, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ option(FIREBASE_INCLUDE_DATABASE
"Include the Firebase Realtime Database library." ON)
option(FIREBASE_INCLUDE_DYNAMIC_LINKS
"Include the Firebase Dynamic Links library." ON)
option(FIREBASE_INCLUDE_INSTALLATIONS
"Include the Firebase Installations library." ON)
option(FIREBASE_INCLUDE_FUNCTIONS
"Include the Cloud Functions for Firebase library." ON)
option(FIREBASE_INCLUDE_MESSAGING
Expand Down Expand Up @@ -241,6 +243,11 @@ if (FIREBASE_INCLUDE_DYNAMIC_LINKS)
list(APPEND TARGET_LINK_LIB_NAMES "firebase_dynamic_links" "firebase_dynamic_links_swig")
list(APPEND PROJECT_LIST_HEADER " X(DynamicLinks)")
endif()
if (FIREBASE_INCLUDE_INSTALLATIONS)
add_subdirectory(installations)
list(APPEND TARGET_LINK_LIB_NAMES "firebase_installations" "firebase_installations_swig")
list(APPEND PROJECT_LIST_HEADER " X(Installations)")
endif()
if (FIREBASE_INCLUDE_FUNCTIONS)
add_subdirectory(functions)
list(APPEND TARGET_LINK_LIB_NAMES "firebase_functions" "firebase_functions_swig")
Expand Down