Files
react-native/private/react-native-fantom/tester/codegen/react/CMakeLists.txt
Andrew DatsenkoandFacebook GitHub Bot 386a930afb HermesInstance::createJSRuntime integration (#52111)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/52111

Changelog: [Internal]

JSRuntime integration with executor on messagequeue.

Inching closer to full integration with the rest of RN.

Reviewed By: rshest

Differential Revision: D76752667

fbshipit-source-id: 0ef8fe0c615dc1eb45355f7502e01663772ebf13
2025-06-20 07:08:28 -07:00

26 lines
661 B
CMake

# 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)
file(GLOB react_codegen_SRCS CONFIGURE_DEPENDS renderer/components/FBReactNativeSpec/*.cpp)
add_library(
react_codegen_rncore
OBJECT
${react_codegen_SRCS}
)
target_include_directories(react_codegen_rncore PUBLIC react/renderer/components/FBReactNativeSpec)
target_link_libraries(
react_codegen_rncore
jsi
react_nativemodule_core
)
target_compile_reactnative_options(react_codegen_rncore PRIVATE)