CMake Lists
CMake Lists
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Top level CMake file that defines targets for the Firebase C++ SDK.
cmake_minimum_required(VERSION 3.1)
include(FindPkgConfig)
if(NOT LIBSECRET_FOUND)
message(WARNING "Unable to find libsecret, which is needed by Linux \
desktop implementations of Auth, Instance ID, and \
Remote Config. \
It can be installed on supported systems via: \
apt-get install libsecret-1-dev")
else()
set_target_properties(firebase_auth PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${LIBSECRET_INCLUDE_DIRS}"
INTERFACE_LINK_LIBRARIES "${LIBSECRET_LIBRARIES}"
)
set_target_properties(firebase_instance_id PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${LIBSECRET_INCLUDE_DIRS}"
INTERFACE_LINK_LIBRARIES "${LIBSECRET_LIBRARIES}"
)
set_target_properties(firebase_remote_config PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${LIBSECRET_INCLUDE_DIRS}"
INTERFACE_LINK_LIBRARIES "${LIBSECRET_LIBRARIES}"
)
endif()
endif()