mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
ff85e2f6dd
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/52653 Changelog: [Internal] This adds an example of Unit Testing a C++ Turbo Module with Google GTest and also adds necessary and useful utility classes for testings This is GTEST / C++ version of the same tests added in https://github.com/facebook/react-native/pull/52477 Reviewed By: alanleedev Differential Revision: D78250302 fbshipit-source-id: 278655779dd17550be9c579d84cc1f7b6e45230d
32 lines
1.1 KiB
Ruby
32 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.
|
|
|
|
require "json"
|
|
|
|
package = JSON.parse(File.read(File.join(__dir__, "../package.json")))
|
|
|
|
Pod::Spec.new do |s|
|
|
s.name = "NativeCxxModuleExample"
|
|
s.version = package["version"]
|
|
s.summary = package["description"]
|
|
s.description = "NativeCxxModuleExample"
|
|
s.homepage = "https://github.com/facebook/react-native.git"
|
|
s.license = "MIT"
|
|
s.platforms = min_supported_versions
|
|
s.compiler_flags = '-Wno-nullability-completeness'
|
|
s.author = "Meta Platforms, Inc. and its affiliates"
|
|
s.source = { :git => "https://github.com/facebook/react-native.git", :tag => "#{s.version}" }
|
|
s.source_files = "*.{h,cpp}"
|
|
s.requires_arc = true
|
|
s.pod_target_xcconfig = {
|
|
"USE_HEADERMAP" => "YES",
|
|
"CLANG_CXX_LANGUAGE_STANDARD" => rct_cxx_language_standard()
|
|
}
|
|
|
|
install_modules_dependencies(s)
|
|
|
|
s.dependency "ReactCommon/turbomodule/core"
|
|
end
|