mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 17:58:20 +00:00
d283bbd1c4
* fix: split apart big Cmake libraries * fix: formatting * fix: newline * fix: add quotes
13 lines
276 B
CMake
13 lines
276 B
CMake
set(DPHYSICS_SOURCES "dpCollisionChecks.cpp"
|
|
"dpEntity.cpp"
|
|
"dpGrid.cpp"
|
|
"dpShapeBase.cpp"
|
|
"dpShapeBox.cpp"
|
|
"dpShapeSphere.cpp"
|
|
"dpWorld.cpp")
|
|
|
|
add_library(dPhysics STATIC ${DPHYSICS_SOURCES})
|
|
target_link_libraries(dPhysics
|
|
PUBLIC Recast Detour
|
|
INTERFACE dNavigation)
|