Skip to content

Commit 9ec4d73

Browse files
no webp
1 parent 271b27d commit 9ec4d73

File tree

6 files changed

+15
-5
lines changed

6 files changed

+15
-5
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
branches:
55
- master
66
env:
7-
BRN_Version: '0.71'
7+
BRN_Version: '0.69'
88

99
jobs:
1010
build-android:

Apps/BRNPlayground/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"postinstall": "node ./postinstall.js"
1818
},
1919
"dependencies": {
20-
"@babylonjs/core": ">=5.53.1",
21-
"@babylonjs/loaders": ">=5.53.1",
20+
"@babylonjs/core": "8.3.1",
21+
"@babylonjs/loaders": "8.3.1",
2222
"@babylonjs/react-native": "file:../../Modules/@babylonjs/react-native",
2323
"@babylonjs/react-native-iosandroid": "file:../../Modules/@babylonjs/react-native-iosandroid",
2424
"@babylonjs/react-native-windows": "file:../../Modules/@babylonjs/react-native-windows",

Apps/Playground/0.71/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"iosCMake": "node scripts/tools.js iosCMake"
1414
},
1515
"dependencies": {
16-
"@babylonjs/core": ">=5.53.1",
17-
"@babylonjs/loaders": ">=5.53.1",
16+
"@babylonjs/core": "8.3.1",
17+
"@babylonjs/loaders": "8.3.1",
1818
"@babylonjs/react-native": "file:../../../Modules/@babylonjs/react-native",
1919
"@babylonjs/react-native-iosandroid": "file:../../../Modules/@babylonjs/react-native-iosandroid",
2020
"@babylonjs/react-native-windows": "file:../../../Modules/@babylonjs/react-native-windows",

Modules/@babylonjs/react-native-iosandroid/android/CMakeLists.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ cmake_minimum_required(VERSION 3.13.2)
2020
# [24, infinite) ES2 & ES3 & Vulkan
2121
project(ReactNativeBabylon)
2222

23+
# Disable the WebP plugin option
24+
set(BABYLON_NATIVE_PLUGIN_NATIVEENGINE_WEBP OFF CACHE BOOL "Disable Babylon Native WebP Support")
25+
2326
set(THIS_LIBRARY BabylonNative)
2427

2528
include(${CMAKE_CURRENT_LIST_DIR}/../../react-native/shared/CMakeLists.txt)

Modules/@babylonjs/react-native-iosandroid/ios/CMakeLists.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ set(ENABLE_PCH OFF CACHE STRING "Enables or disables precompiled headers.")
1515

1616
project(ReactNativeBabylon)
1717

18+
# Disable the WebP plugin option
19+
set(BABYLON_NATIVE_PLUGIN_NATIVEENGINE_WEBP OFF CACHE BOOL "Disable Babylon Native WebP Support")
20+
1821
include(${CMAKE_CURRENT_LIST_DIR}/../../react-native/shared/CMakeLists.txt)
1922

2023
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall")

Package/iOS/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ cmake_minimum_required(VERSION 3.13.2)
22

33
include(FetchContent)
44

5+
# Disable the WebP plugin option
6+
set(BABYLON_NATIVE_PLUGIN_NATIVEENGINE_WEBP OFF CACHE BOOL "Disable Babylon Native WebP Support")
7+
58
FetchContent_Declare(ios-cmake
69
GIT_REPOSITORY https://github.com/leetal/ios-cmake.git
710
GIT_TAG 4.4.1)
@@ -53,6 +56,7 @@ set(PACKAGED_LIBS
5356
UrlLib
5457
Window
5558
XMLHttpRequest
59+
Scheduling
5660
xr
5761
)
5862

0 commit comments

Comments
 (0)