From 20153d23c020d493318175e19f771b179e063a4d Mon Sep 17 00:00:00 2001 From: Sergey Lapin Date: Fri, 6 Feb 2026 18:20:12 +0300 Subject: [PATCH] Forgot to update file --- CMakeLists.txt | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fc5e7a9..3ab2b2a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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