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
30 lines
799 B
CMake
30 lines
799 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_RECURSE hermes_executor_SRC CONFIGURE_DEPENDS *.cpp)
|
|
add_library(
|
|
hermes-executor-common
|
|
STATIC
|
|
${hermes_executor_SRC}
|
|
)
|
|
target_include_directories(hermes-executor-common PUBLIC .)
|
|
target_link_libraries(hermes-executor-common
|
|
jsireact
|
|
hermes-engine::libhermes
|
|
jsi
|
|
debug hermes-inspector
|
|
)
|
|
|
|
if(${CMAKE_BUILD_TYPE} MATCHES Debug)
|
|
target_compile_options(
|
|
hermes-executor-common
|
|
PRIVATE
|
|
-DHERMES_ENABLE_DEBUGGER=1
|
|
)
|
|
endif()
|