@revrag-ai/embed-react-native
Version:
A powerful React Native library for integrating AI-powered voice agents into mobile applications. Features real-time voice communication, intelligent speech processing, customizable UI components, and comprehensive event handling for building conversation
50 lines (43 loc) • 1.1 kB
Plain Text
# 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 *.cpp react/renderer/components/RNEmbedReactNativeSpec/*.cpp)
add_library(
react_codegen_RNEmbedReactNativeSpec
SHARED
${react_codegen_SRCS}
)
target_include_directories(react_codegen_RNEmbedReactNativeSpec PUBLIC . react/renderer/components/RNEmbedReactNativeSpec)
target_link_libraries(
react_codegen_RNEmbedReactNativeSpec
fbjni
folly_runtime
glog
jsi
react_codegen_rncore
react_debug
react_nativemodule_core
react_render_componentregistry
react_render_core
react_render_debug
react_render_graphics
react_render_imagemanager
react_render_mapbuffer
react_utils
rrc_image
rrc_view
turbomodulejsijni
yoga
)
target_compile_options(
react_codegen_RNEmbedReactNativeSpec
PRIVATE
-DLOG_TAG=\"ReactNative\"
-fexceptions
-frtti
-std=c++20
-Wall
)