mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 16:55:56 +02:00
21 lines
551 B
CMake
21 lines
551 B
CMake
set(TARGET_NAME assignment-client)
|
|
|
|
setup_hifi_project(Core Gui Network Script Quick Widgets WebSockets)
|
|
|
|
# Fix up the rpath so macdeployqt works
|
|
if (APPLE)
|
|
set_target_properties(${TARGET_NAME} PROPERTIES INSTALL_RPATH "@executable_path/../Frameworks")
|
|
endif ()
|
|
|
|
# link in the shared libraries
|
|
link_hifi_libraries(
|
|
audio avatars octree gpu model fbx entities
|
|
networking animation recording shared script-engine embedded-webserver
|
|
controllers physics plugins
|
|
)
|
|
|
|
if (WIN32)
|
|
package_libraries_for_deployment()
|
|
endif()
|
|
|
|
install_beside_console()
|