mirror of
https://github.com/EQEmu/Server.git
synced 2026-09-07 00:56:58 +00:00
Recast navigation
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
cmake_minimum_required(VERSION 3.0)
|
||||
|
||||
project(RecastNavigation)
|
||||
|
||||
# lib versions
|
||||
SET(SOVERSION 1)
|
||||
SET(VERSION 1.0.0)
|
||||
|
||||
option(RECASTNAVIGATION_DEMO "Build demo" ON)
|
||||
option(RECASTNAVIGATION_TESTS "Build tests" ON)
|
||||
option(RECASTNAVIGATION_EXAMPLES "Build examples" ON)
|
||||
option(RECASTNAVIGATION_STATIC "Build static libraries" ON)
|
||||
|
||||
add_subdirectory(DebugUtils)
|
||||
add_subdirectory(Detour)
|
||||
add_subdirectory(DetourCrowd)
|
||||
add_subdirectory(DetourTileCache)
|
||||
add_subdirectory(Recast)
|
||||
|
||||
if (RECASTNAVIGATION_DEMO)
|
||||
add_subdirectory(RecastDemo)
|
||||
endif ()
|
||||
|
||||
if (RECASTNAVIGATION_TESTS)
|
||||
enable_testing()
|
||||
add_subdirectory(Tests)
|
||||
endif ()
|
||||
Reference in New Issue
Block a user