mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 12:54:00 +00:00
16 lines
320 B
CMake
16 lines
320 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
|
|
project(RecastNavigation)
|
|
|
|
# lib versions
|
|
SET(SOVERSION 1)
|
|
SET(VERSION 1.0.0)
|
|
|
|
option(RECASTNAVIGATION_STATIC "Build static libraries" ON)
|
|
|
|
add_subdirectory(DebugUtils)
|
|
add_subdirectory(Detour)
|
|
add_subdirectory(DetourCrowd)
|
|
add_subdirectory(DetourTileCache)
|
|
add_subdirectory(Recast)
|