Updated dependencies and versions

This commit is contained in:
2026-03-22 18:46:36 +03:00
parent 502209675d
commit 6b2f218c5c
8 changed files with 24 additions and 6 deletions

View File

@@ -296,10 +296,23 @@ ExternalProject_Add(ogre-static
-DASSIMP_BUILD_ASSIMP_TOOLS=ON
-DOGRE_STATIC=TRUE
${CUSTOM_OPTS_STATIC} -DCMAKE_BUILD_TYPE=Debug
PATCH_COMMAND ${CMAKE_COMMAND} -E make_directory Dependencies/include/bullet
DEPENDS core-deps-static freetype-static assimp-static glslang-static zlib-static
)
ExternalProject_Add_Step(ogre create_build_subdir
COMMAND ${CMAKE_COMMAND} -E make_directory "<BINARY_DIR>/Dependencies/include/bullet"
COMMENT "Creating subdirectory inside the external build folder"
DEPENDEES build # Runs after build
DEPENDERS install # Runs before install
)
ExternalProject_Add_Step(ogre-static create_build_subdir
COMMAND ${CMAKE_COMMAND} -E make_directory "<BINARY_DIR>/Dependencies/include/bullet"
COMMENT "Creating subdirectory inside the external build folder"
DEPENDEES build # Runs after build
DEPENDERS install # Runs before install
)
ExternalProject_Add(ogre-procedural
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/ogre-procedural
CMAKE_ARGS -DOgreProcedural_BUILD_DOCS:BOOL=FALSE