Forgot to update file

This commit is contained in:
2026-02-06 18:20:12 +03:00
parent 5292263c95
commit 20153d23c0

View File

@@ -396,16 +396,28 @@ ExternalProject_Add(nanoflann-static
${CUSTOM_OPTS_STATIC} -DCMAKE_BUILD_TYPE=Debug
)
ExternalProject_Add(recastnavigation
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/recastnavigation
CMAKE_ARGS
${CUSTOM_OPTS} -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=OFF -DRECASTNAVIGATION_DEMO=OFF -DRECASTNAVIGATION_TESTS=OFF -DRECASTNAVIGATION_EXAMPLES=OFF -DCMAKE_POSITION_INDEPENDENT_CODE=ON
)
ExternalProject_Add(recastnavigation-static
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/recastnavigation
CMAKE_ARGS
${CUSTOM_OPTS_STATIC} -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=OFF -DRECASTNAVIGATION_DEMO=OFF -DRECASTNAVIGATION_TESTS=OFF -DRECASTNAVIGATION_EXAMPLES=OFF -DCMAKE_POSITION_INDEPENDENT_CODE=ON
)
ExternalProject_Add(world2
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/ogre-projects/world2
CMAKE_ARGS ${CUSTOM_OPTS} -DBLENDER=${CMAKE_CURRENT_BINARY_DIR}/blender-bin/bin/blender
DEPENDS ogre ogre-procedural ogre-pagedgeometry flecs blender json nanoflann
DEPENDS ogre ogre-procedural ogre-pagedgeometry flecs blender json nanoflann recastnavigation
)
ExternalProject_Add(world2-static
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/ogre-projects/world2
CMAKE_ARGS ${CUSTOM_OPTS_STATIC} -DBLENDER=${CMAKE_CURRENT_BINARY_DIR}/blender-bin/bin/blender
DEPENDS ogre-static ogre-procedural-static ogre-pagedgeometry-static flecs-static json-static nanoflann-static blender
DEPENDS ogre-static ogre-procedural-static ogre-pagedgeometry-static flecs-static json-static nanoflann-static blender recastnavigation-static
)
ExternalProject_Add(jolt-demo