File tree Expand file tree Collapse file tree
packages/react-native/ReactCommon/react/renderer/observers/intersection Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Copyright (c) Meta Platforms, Inc. and affiliates.
2+ #
3+ # This source code is licensed under the MIT license found in the
4+ # LICENSE file in the root directory of this source tree.
5+
6+ cmake_minimum_required (VERSION 3.13 )
7+ set (CMAKE_VERBOSE_MAKEFILE on )
8+
9+ include (${REACT_COMMON_DIR} /cmake-utils/react-native-flags.cmake )
10+
11+ file (GLOB react_nativemodule_webperformance_SRC CONFIGURE_DEPENDS *.cpp )
12+ add_library (react_renderer_observers_intersection OBJECT ${react_nativemodule_webperformance_SRC} )
13+
14+ target_include_directories (react_renderer_observers_intersection PUBLIC ${REACT_COMMON_DIR} )
15+
16+ target_link_libraries (react_renderer_observers_intersection
17+ react_cxxreact
18+ react_bridging
19+ react_debug
20+ react_renderer_core
21+ react_renderer_graphics
22+ react_renderer_mounting
23+ react_renderer_runtimescheduler
24+ react_renderer_uimanager
25+ rrc_view
26+ )
27+ target_compile_reactnative_options (react_renderer_observers_intersection PRIVATE )
28+ target_compile_options (react_renderer_observers_intersection PRIVATE -Wpedantic )
You can’t perform that action at this time.
0 commit comments