File tree Expand file tree Collapse file tree 6 files changed +7
-2
lines changed Expand file tree Collapse file tree 6 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ FetchContent_Declare(base-n
23
23
GIT_TAG 7573e77c0b9b0e8a5fb63d96dbde212c921993b4 )
24
24
FetchContent_Declare (bgfx.cmake
25
25
GIT_REPOSITORY https://github.com/BabylonJS/bgfx.cmake.git
26
- GIT_TAG fdf3ed4a62acabd7025d0a843f6d8a9aff5e3612 )
26
+ GIT_TAG ed8e11f781024120980cdbbc5871cb2ce2f63423 )
27
27
FetchContent_Declare (CMakeExtensions
28
28
GIT_REPOSITORY https://github.com/BabylonJS/CMakeExtensions.git
29
29
GIT_TAG ea28b7689530bfdc4905806f27ecf7e8ed4b5419 )
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ target_link_libraries(Graphics
46
46
PRIVATE bimg
47
47
PRIVATE bimg_encode
48
48
PRIVATE bimg_decode
49
+ PRIVATE minz
49
50
PRIVATE bx )
50
51
51
52
target_compile_definitions (Graphics
Original file line number Diff line number Diff line change @@ -60,6 +60,8 @@ set_property(TARGET bimg_encode PROPERTY FOLDER Dependencies/bgfx/3rdparty)
60
60
set_property (TARGET bimg_encode PROPERTY UNITY_BUILD false )
61
61
set_property (TARGET bimg_decode PROPERTY FOLDER Dependencies/bgfx/3rdparty )
62
62
set_property (TARGET bimg_decode PROPERTY UNITY_BUILD false )
63
+ set_property (TARGET minz PROPERTY FOLDER Dependencies/bgfx/3rdparty )
64
+ set_property (TARGET minz PROPERTY UNITY_BUILD false )
63
65
if (TARGET tinyexr )
64
66
set_property (TARGET tinyexr PROPERTY FOLDER Dependencies/bgfx/3rdparty )
65
67
endif ()
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ endfunction()
35
35
install_targets (arcana )
36
36
37
37
## bgfx
38
- install_targets (bimg_encode bimg_decode bgfx bimg bx )
38
+ install_targets (bimg_encode bimg_decode bgfx bimg bx minz )
39
39
40
40
## glslang
41
41
install_targets (GenericCodeGen glslang MachineIndependent OGLCompiler OSDependent SPIRV glslang-default-resource-limits )
Original file line number Diff line number Diff line change @@ -142,6 +142,7 @@ target_link_libraries(TestInstall
142
142
arcana
143
143
bimg_encode
144
144
bimg_decode
145
+ minz
145
146
bgfx
146
147
bimg
147
148
bx
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ target_link_libraries(NativeEngine
43
43
PRIVATE bimg_encode
44
44
PRIVATE bimg_decode
45
45
PRIVATE bx
46
+ PRIVATE minz
46
47
PRIVATE glslang
47
48
PRIVATE glslang-default-resource-limits
48
49
PRIVATE GraphicsDevice
You can’t perform that action at this time.
0 commit comments