From 84e5961d36db468365fb39676e78627286e63709 Mon Sep 17 00:00:00 2001 From: Anthony Maurice Date: Fri, 23 Jul 2021 17:17:39 -0700 Subject: [PATCH] Fix a missing endif in the top level Cmake --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index ebe2be3aa..393ee33f0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -256,6 +256,7 @@ 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_FIRESTORE) add_subdirectory(firestore) list(APPEND TARGET_LINK_LIB_NAMES "firebase_firestore" "firebase_firestore_swig")