Files
flipper/iOS/Podspecs/Flipper-Fmt.podspec
Andres Suarez 79023ee190 Update copyright headers from Facebook to Meta
Reviewed By: bhamodi

Differential Revision: D33331422

fbshipit-source-id: 016e8dcc0c0c7f1fc353a348b54fda0d5e2ddc01
2021-12-27 14:31:45 -08:00

27 lines
1.1 KiB
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 = '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