Summary: A few people reported issues due to the previous repo name (`Sonar`) being referenced in the Podfile. - https://github.com/facebook/react-native/issues/27565 - https://github.com/facebook/react-native/issues/29251 - https://github.com/facebook/flipper/issues/1321 This PR updates it to the current name (`flipper`). Please let me know if these updates are also needed for the files under `Specs/Flipper/**/Flipper.podspec` (not sure what the purpose is). Pull Request resolved: https://github.com/facebook/flipper/pull/1528 Reviewed By: nikoant Differential Revision: D23730546 Pulled By: passy fbshipit-source-id: b4d776f44a054f3fe8b793ca36a8fbc8835e5d04
30 lines
1.6 KiB
Ruby
30 lines
1.6 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.
|
|
|
|
flipperkit_version = '0.56.0'
|
|
Pod::Spec.new do |spec|
|
|
spec.name = 'Flipper'
|
|
spec.version = flipperkit_version
|
|
spec.license = { :type => 'MIT' }
|
|
spec.homepage = 'https://github.com/facebook/flipper'
|
|
spec.summary = 'SonarKit core cpp code with network implementation'
|
|
spec.authors = 'Facebook'
|
|
spec.source = { :git => 'https://github.com/facebook/flipper.git',
|
|
:tag => 'v'+flipperkit_version }
|
|
spec.module_name = 'Flipper'
|
|
spec.public_header_files = 'xplat/Flipper/*.h','xplat/utils/*.h'
|
|
spec.source_files = 'xplat/Flipper/*.{h,cpp,m,mm}','xplat/Flipper/utils/*.{h,cpp,m,mm}'
|
|
spec.libraries = "stdc++"
|
|
spec.dependency 'Flipper-Folly', '~> 2.2'
|
|
spec.dependency 'Flipper-RSocket', '~> 1.1'
|
|
spec.compiler_flags = '-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall
|
|
-std=c++14
|
|
-Wno-global-constructors'
|
|
spec.platforms = { :ios => "8.0" }
|
|
spec.pod_target_xcconfig = { "USE_HEADERMAP" => "NO",
|
|
"CLANG_CXX_LANGUAGE_STANDARD" => "c++14",
|
|
"HEADER_SEARCH_PATHS" => "\"$(PODS_TARGET_SRCROOT)\" \"$(PODS_ROOT)/boost-for-react-native\" \"$(PODS_ROOT)/Flipper-RSocket\" \"$(PODS_ROOT)/Flipper-DoubleConversion\"" }
|
|
end
|