mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
add react_nativemodule_intersectionobserver cmake (#52160)
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/52160 Changelog: [Internal] Add missing cmake lib for react_nativemodule_intersectionobserver Reviewed By: christophpurrer Differential Revision: D77035609 fbshipit-source-id: d6c372d48a2c60b403b33d1477e6085347fe8633
This commit is contained in:
committed by
Facebook GitHub Bot
parent
ee256d11ae
commit
ab2ce4f2d8
+28
@@ -0,0 +1,28 @@
|
||||
# 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.
|
||||
|
||||
cmake_minimum_required(VERSION 3.13)
|
||||
set(CMAKE_VERBOSE_MAKEFILE on)
|
||||
|
||||
include(${REACT_COMMON_DIR}/cmake-utils/react-native-flags.cmake)
|
||||
|
||||
file(GLOB react_nativemodule_webperformance_SRC CONFIGURE_DEPENDS *.cpp)
|
||||
add_library(react_nativemodule_intersectionobserver OBJECT ${react_nativemodule_webperformance_SRC})
|
||||
|
||||
target_include_directories(react_nativemodule_intersectionobserver PUBLIC ${REACT_COMMON_DIR})
|
||||
|
||||
target_link_libraries(react_nativemodule_intersectionobserver
|
||||
react_codegen_rncore
|
||||
react_cxxreact
|
||||
react_renderer_bridging
|
||||
react_renderer_core
|
||||
react_renderer_graphics
|
||||
react_renderer_observers_intersection
|
||||
react_renderer_runtimescheduler
|
||||
react_renderer_uimanager
|
||||
rrc_view
|
||||
)
|
||||
target_compile_reactnative_options(react_nativemodule_intersectionobserver PRIVATE)
|
||||
target_compile_options(react_nativemodule_intersectionobserver PRIVATE -Wpedantic -Wno-deprecated-declarations)
|
||||
+2
@@ -11,7 +11,9 @@
|
||||
#include <react/renderer/uimanager/UIManagerBinding.h>
|
||||
#include <react/renderer/uimanager/primitives.h>
|
||||
|
||||
#ifdef RN_DISABLE_OSS_PLUGIN_HEADER
|
||||
#include "Plugins.h"
|
||||
#endif
|
||||
|
||||
std::shared_ptr<facebook::react::TurboModule>
|
||||
NativeIntersectionObserverModuleProvider(
|
||||
|
||||
Reference in New Issue
Block a user