We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0845430 commit cd91d2eCopy full SHA for cd91d2e
Package/iOS/CMakeLists.txt
@@ -1,5 +1,11 @@
1
cmake_minimum_required(VERSION 3.13.2)
2
project(ReactNativeBabylon)
3
+
4
+# Clang will by default emit objc_msgSend stubs in Xcode 14, which ld from earlier Xcodes doesn't understand.
5
+# We disable this by passing -fno-objc-msgsend-selector-stubs to clang.
6
+# https://stackoverflow.com/questions/73983452/xcode-14-xcode-13-incompatibility
7
+add_compile_options("-fno-objc-msgsend-selector-stubs")
8
9
include(${CMAKE_CURRENT_SOURCE_DIR}/../../Apps/Playground/Playground/node_modules/@babylonjs/react-native-iosandroid/ios/CMakeLists.txt)
10
11
set(PACKAGED_LIBS
0 commit comments