File tree 2 files changed +6
-3
lines changed
Modules/@babylonjs/react-native-windows/windows 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 203
203
SPIRVd.lib;
204
204
UrlLib.lib;
205
205
Window.lib;
206
+ Scheduling.lib;
206
207
XMLHttpRequest.lib;
207
208
WindowsApp.lib;
208
209
%(AdditionalDependencies);
254
255
SPIRV.lib;
255
256
UrlLib.lib;
256
257
Window.lib;
258
+ Scheduling.lib;
257
259
XMLHttpRequest.lib;
258
260
WindowsApp.lib;
259
261
%(AdditionalDependencies);
Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ set_property(GLOBAL PROPERTY USE_FOLDERS ON)
3
3
4
4
project (ReactNativeBabylon)
5
5
6
+ # Disable the WebP plugin option
7
+ set (BABYLON_NATIVE_PLUGIN_NATIVEENGINE_WEBP OFF CACHE BOOL "Disable Babylon Native WebP Support" )
8
+
6
9
set (CMAKE_CXX_STANDARD 17)
7
10
8
11
set (BABYLON_REACT_NATIVE_DIR "${CMAKE_CURRENT_LIST_DIR} /../../react-native" )
@@ -35,9 +38,6 @@ add_subdirectory(${babylonnative_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR}/Babylon
35
38
# Disable Unity build for UrlLib because of conflict in header between windows.h and winrt
36
39
set_property (TARGET UrlLib PROPERTY UNITY_BUILD false )
37
40
38
- # Disable the WebP plugin option
39
- set (BABYLON_NATIVE_PLUGIN_NATIVEENGINE_WEBP OFF CACHE BOOL "Disable Babylon Native WebP Support" )
40
-
41
41
add_library (BabylonNative
42
42
${SHARED_SOURCES} )
43
43
@@ -70,6 +70,7 @@ target_link_libraries(BabylonNative
70
70
NativeOptimizations
71
71
NativeTracing
72
72
Window
73
+ Scheduling
73
74
XMLHttpRequest
74
75
Canvas
75
76
${ADDITIONAL_LIBRARIES} )
You can’t perform that action at this time.
0 commit comments