Summary: Pull Request resolved: https://github.com/facebook/flipper/pull/2245 This diff does the following: - Updates Folly to the latest version. - Updates boost to latest version and the boost is added as pre built artefact - Updates RSocket to the latest version - Updates ComponentKit to the latest version which has a fix for XCode 12.5 - Adds Flipper-Glog dependency updated with a fix for the issue mentioned [here](https://github.com/facebook/flipper/issues/2174) - This diff also ensures that Flipper, FlipperKit builds with Sample and SampleSwift app. - This diff also ensures that the bug mentioned [here](https://github.com/facebook/flipper/issues/2248) is addressed. Note: For Tutorial App to work we will have to make a release of Flipper and FlipperKit to CococaPods. Because the tutorial app refers the released version of Flipper and FlipperKit. It doesn't refer it locally. Reviewed By: passy Differential Revision: D28058972 fbshipit-source-id: d45dfc7315ace5d5c7d3a4ba94911fd4b58bdc31
27 lines
1.1 KiB
Ruby
27 lines
1.1 KiB
Ruby
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
Pod::Spec.new do |spec|
|
|
spec.name = 'Flipper-Fmt'
|
|
spec.version = '7.1.7'
|
|
spec.license = { :type => 'MIT' }
|
|
spec.homepage = 'https://github.com/fmtlib/fmt'
|
|
spec.authors = { 'Pritesh Nandgaonkar' => 'prit91@fb.com' }
|
|
spec.summary = '{fmt} is an open-source formatting library providing a fast and safe alternative to C stdio and C++ iostreams. '
|
|
|
|
spec.source = { :git => "https://github.com/priteshrnandgaonkar/fmt.git",
|
|
:tag => "7.1.7" }
|
|
spec.source_files = "src/format.cc", "include/**/*.h",
|
|
spec.public_header_files = "include/**/*.h"
|
|
spec.requires_arc = true
|
|
spec.ios.deployment_target = '10.0'
|
|
spec.header_dir = 'fmt'
|
|
spec.libraries = "stdc++"
|
|
spec.exclude_files = "src/fmt.cc", "src/fmt.cc"
|
|
spec.pod_target_xcconfig = { "USE_HEADERMAP" => "NO",
|
|
"HEADER_SEARCH_PATHS" => "\"$(PODS_TARGET_SRCROOT)/include/\""
|
|
}
|
|
end
|