25 lines
471 B
CMake
25 lines
471 B
CMake
CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
|
|
|
|
SET(recast_SRCS
|
|
Source/Recast.cpp
|
|
Source/RecastArea.cpp
|
|
Source/RecastAlloc.cpp
|
|
Source/RecastContour.cpp
|
|
Source/RecastFilter.cpp
|
|
Source/RecastLayers.cpp
|
|
Source/RecastMesh.cpp
|
|
Source/RecastMeshDetail.cpp
|
|
Source/RecastRasterization.cpp
|
|
Source/RecastRegion.cpp
|
|
)
|
|
|
|
SET(recast_HDRS
|
|
Include/Recast.h
|
|
Include/RecastAlloc.h
|
|
Include/RecastAssert.h
|
|
)
|
|
|
|
INCLUDE_DIRECTORIES(Include)
|
|
|
|
ADD_LIBRARY(Recast ${recast_SRCS} ${recast_HDRS})
|