Skip to content

Commit

Permalink
fix: unblock build for 0.76 (#660)
Browse files Browse the repository at this point in the history
  • Loading branch information
vonovak authored Oct 17, 2024
1 parent cdd1d19 commit e472653
Showing 1 changed file with 32 additions and 21 deletions.
53 changes: 32 additions & 21 deletions package/android/src/main/jni/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,27 +37,38 @@ target_include_directories(
${LIB_ANDROID_GENERATED_COMPONENTS_DIR}
)

target_link_libraries(
${LIB_TARGET_NAME}
fbjni
folly_runtime
glog
jsi
react_codegen_rncore
react_debug
react_render_componentregistry
react_render_core
react_render_debug
react_render_graphics
react_render_imagemanager
react_render_mapbuffer
react_utils
react_nativemodule_core
rrc_image
turbomodulejsijni
rrc_view
yoga
)
# https://github.com/react-native-community/discussions-and-proposals/discussions/816
# This if-then-else can be removed once this library does not support version below 0.76
if (REACTNATIVE_MERGED_SO)
target_link_libraries(
${LIB_TARGET_NAME}
fbjni
jsi
reactnative
)
else()
target_link_libraries(
${LIB_TARGET_NAME}
fbjni
folly_runtime
glog
jsi
react_codegen_rncore
react_debug
react_render_componentregistry
react_render_core
react_render_debug
react_render_graphics
react_render_imagemanager
react_render_mapbuffer
react_utils
react_nativemodule_core
rrc_image
turbomodulejsijni
rrc_view
yoga
)
endif()

target_compile_options(
${LIB_TARGET_NAME}
Expand Down

0 comments on commit e472653

Please sign in to comment.