mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
18 lines
404 B
CMake
18 lines
404 B
CMake
set(TARGET_NAME assignment-client)
|
|
|
|
setup_hifi_project(Core Gui Network Script Widgets)
|
|
|
|
include_glm()
|
|
|
|
# link in the shared libraries
|
|
link_hifi_libraries(
|
|
audio avatars octree voxels fbx entities metavoxels
|
|
networking animation shared script-engine embedded-webserver
|
|
physics
|
|
)
|
|
|
|
if (UNIX)
|
|
list(APPEND ${TARGET_NAME}_LIBRARIES_TO_LINK ${CMAKE_DL_LIBS})
|
|
endif (UNIX)
|
|
|
|
link_shared_dependencies()
|