mirror of
https://github.com/overte-org/overte.git
synced 2025-07-10 10:38:55 +02:00
17 lines
No EOL
468 B
CMake
17 lines
No EOL
468 B
CMake
set(TARGET_NAME assignment-client)
|
|
|
|
setup_hifi_project(${TARGET_NAME} Core Gui Network Script Widgets)
|
|
|
|
include_glm(${TARGET_NAME})
|
|
|
|
# link in the shared libraries
|
|
link_hifi_libraries(${TARGET_NAME}
|
|
audio avatars octree voxels fbx particles models metavoxels
|
|
networking animation shared script-engine embedded-webserver
|
|
)
|
|
|
|
if (UNIX)
|
|
list(APPEND ${TARGET_NAME}_LIBRARIES_TO_LINK ${CMAKE_DL_LIBS})
|
|
endif (UNIX)
|
|
|
|
link_shared_dependencies_to_target(${TARGET_NAME}) |