overte/assignment-client/CMakeLists.txt
SamGondelman 544606bccc cmake fix
2016-09-06 17:40:44 -07:00

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()