Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ target_include_directories(react_nativemodule_microtasks PUBLIC ${REACT_COMMON_D
target_link_libraries(react_nativemodule_microtasks
react_codegen_rncore
react_cxxreact
react_cxxstableapi
)
target_compile_reactnative_options(react_nativemodule_microtasks PRIVATE)
target_compile_options(react_nativemodule_microtasks PRIVATE -Wpedantic)
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

#pragma once

#include <react/cxxstableapi/PrivateGuard.h>

#if __has_include("FBReactNativeSpecJSI.h") // CocoaPod headers on Apple
#include "FBReactNativeSpecJSI.h"
#else
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ Pod::Spec.new do |s|
add_rncore_dependency(s)

s.dependency "ReactCommon/turbomodule/core"
s.dependency "React-cxxstableapi"
add_dependency(s, "React-RCTFBReactNativeSpec")

mark_as_react_native_build(s)
Expand Down
Loading