mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Adds CMake files to configure hermes-executor build, with the same setup as we have in Android.mk Changelog: [Internal] - CMake build config for hermes executor Reviewed By: cortinico Differential Revision: D34811909 fbshipit-source-id: 2df6dbaf46131db87a25e26c83b38ba44f29d1d3
23 lines
592 B
CMake
23 lines
592 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)
|
|
|
|
add_compile_options(
|
|
-fexceptions
|
|
-frtti
|
|
-std=c++17
|
|
-Wall
|
|
-DLOG_TAG=\"Fabric\")
|
|
|
|
|
|
file(GLOB react_debug_SRC CONFIGURE_DEPENDS *.cpp)
|
|
add_library(react_debug SHARED ${react_debug_SRC})
|
|
|
|
target_include_directories(react_debug PUBLIC ${REACT_COMMON_DIR})
|
|
|
|
target_link_libraries(react_debug log folly_json)
|