mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-12-11 18:48:26 +00:00
added option to automatically write the raw obj file Added scene colors to the obj use proper scene colors from hf
12 lines
395 B
CMake
12 lines
395 B
CMake
set(DNAVIGATION_SOURCES "dNavMesh.cpp")
|
|
|
|
add_library(dNavigation OBJECT ${DNAVIGATION_SOURCES})
|
|
target_include_directories(dNavigation PUBLIC "."
|
|
PRIVATE
|
|
"${PROJECT_SOURCE_DIR}/dZoneManager"
|
|
"${PROJECT_SOURCE_DIR}/dGame"
|
|
"${PROJECT_SOURCE_DIR}/dGame/dEntity"
|
|
"${PROJECT_SOURCE_DIR}/dNavigation/dTerrain" # via dNavMesh.cpp
|
|
)
|
|
target_link_libraries(dNavigation PRIVATE Detour Recast dCommon)
|