mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
31 lines
687 B
CMake
31 lines
687 B
CMake
|
|
add_executable(cyclient
|
|
CharacterClient.cpp
|
|
CreatorClient.cpp
|
|
BaseClient.cpp
|
|
ObserverClient.cpp
|
|
ClientConnection.cpp
|
|
Py_ObserverClient.cpp
|
|
Py_CreatorClient.cpp
|
|
Python_ClientAPI.cpp
|
|
ClientPropertyManager.cpp
|
|
client.cpp)
|
|
|
|
target_link_libraries(cyclient ${PYTHON_LIBRARIES})
|
|
|
|
target_link_libraries(cyclient
|
|
scriptpython
|
|
navigation
|
|
DetourTileCache
|
|
Detour
|
|
Recast
|
|
rulesetmind
|
|
rulesetentity
|
|
entityfilter
|
|
rulesetbase
|
|
modules
|
|
common
|
|
physics
|
|
)
|
|
|
|
install(TARGETS cyclient DESTINATION ${CMAKE_INSTALL_FULL_BINDIR})
|