mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: This is what Folly is built against internally. Bump the version we use, and the standard we compile with, to take some different paths, and see if we fix some warnings caused by FMT with the ndk bump. Changelog: [General][Breaking] - Bump fmt to 9.1.0 Pull Request resolved: https://github.com/facebook/react-native/pull/39799 Test Plan: Passes in CircleCI Reviewed By: cortinico, yungsters Differential Revision: D49900112 Pulled By: NickGerleman fbshipit-source-id: 3f11080555ef20aeb9291d1096ffa6077b3b3bbd
26 lines
908 B
Ruby
26 lines
908 B
Ruby
# Copyright (c) Meta Platforms, Inc. and 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 = "fmt"
|
|
spec.version = "9.1.0"
|
|
spec.license = { :type => "MIT" }
|
|
spec.homepage = "https://github.com/fmtlib/fmt"
|
|
spec.summary = "{fmt} is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams."
|
|
spec.authors = "The fmt contributors"
|
|
spec.source = {
|
|
:git => "https://github.com/fmtlib/fmt.git",
|
|
:tag => "9.1.0"
|
|
}
|
|
spec.pod_target_xcconfig = {
|
|
"CLANG_CXX_LANGUAGE_STANDARD" => "c++20",
|
|
}
|
|
spec.platforms = min_supported_versions
|
|
spec.libraries = "c++"
|
|
spec.public_header_files = "include/fmt/*.h"
|
|
spec.header_mappings_dir = "include"
|
|
spec.source_files = ["include/fmt/*.h", "src/format.cc"]
|
|
end
|