File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
packages/react-native/ReactCxxPlatform/react/devsupport Expand file tree Collapse file tree 1 file changed +35
-0
lines changed 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_cxx_platform_react_devsupport_SRC CONFIGURE_DEPENDS
12
+ *.cpp
13
+ inspector/*.cpp )
14
+ add_library (react_cxx_platform_react_devsupport OBJECT ${react_cxx_platform_react_devsupport_SRC} )
15
+
16
+ target_include_directories (react_cxx_platform_react_devsupport PUBLIC ${REACT_CXX_PLATFORM_DIR} )
17
+
18
+ target_link_libraries (react_cxx_platform_react_devsupport
19
+ glog
20
+ nlohmann_json
21
+ folly_runtime
22
+ jsi
23
+ OpenSSL::Crypto
24
+ react_cxx_platform_react_http
25
+ react_cxx_platform_react_nativemodule
26
+ react_cxx_platform_react_renderer_scheduler
27
+ react_cxx_platform_react_renderer_scheduler
28
+ react_cxx_platform_react_threading
29
+ react_codegen_rncore
30
+ jsinspector
31
+ react_debug
32
+ react_renderer_graphics
33
+ )
34
+ target_compile_reactnative_options (react_cxx_platform_react_devsupport PRIVATE )
35
+ target_compile_options (react_cxx_platform_react_devsupport PRIVATE -Wpedantic -Wno-deprecated-declarations )
You can’t perform that action at this time.
0 commit comments