| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- # Copyright 2019 Google LLC
- #
- # 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.
- if(NOT APPLE)
- return()
- endif()
- if(IOS)
- add_executable(
- firebase_firestore_example_app MACOSX_BUNDLE
- iOS/FIRAppDelegate.h
- iOS/FIRAppDelegate.m
- iOS/FIRViewController.h
- iOS/FIRViewController.m
- iOS/main.m
- )
- target_compile_options(
- firebase_firestore_example_app
- PRIVATE ${FIREBASE_IOS_OBJC_FLAGS}
- )
- target_link_libraries(
- firebase_firestore_example_app
- PRIVATE
- "-framework UIKit"
- "-framework Foundation"
- )
- set_target_properties(
- firebase_firestore_example_app PROPERTIES
- MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/iOS/Firestore-Info.plist
- RESOURCE GoogleService-Info.plist
- )
- else()
- # Assume macOS
- add_executable(
- firebase_firestore_example_app MACOSX_BUNDLE
- macOS/AppDelegate.h
- macOS/AppDelegate.m
- macOS/main.m
- )
- target_compile_options(
- firebase_firestore_example_app
- PRIVATE ${FIREBASE_IOS_OBJC_FLAGS}
- )
- target_link_libraries(
- firebase_firestore_example_app
- PRIVATE
- "-framework AppKit"
- "-framework Foundation"
- )
- set_target_properties(
- firebase_firestore_example_app PROPERTIES
- MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/macOS/Info.plist
- RESOURCE GoogleService-Info.plist
- )
- endif()
|