mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 19:36:44 +02:00
Fixes a `undefined reference to symbol 'dlclose@@GLIBC_2.2.5' error I was running into on Linux Mint 17.2.
18 lines
494 B
CMake
18 lines
494 B
CMake
set(TARGET_NAME assignment-client)
|
|
|
|
setup_hifi_project(Core Gui Network Script Widgets WebSockets)
|
|
|
|
add_dependency_external_projects(glm)
|
|
find_package(GLM REQUIRED)
|
|
target_include_directories(${TARGET_NAME} PRIVATE ${GLM_INCLUDE_DIRS})
|
|
|
|
# link in the shared libraries
|
|
link_hifi_libraries(
|
|
audio avatars octree environment gpu model fbx entities
|
|
networking animation shared script-engine embedded-webserver
|
|
physics
|
|
)
|
|
|
|
include_application_version()
|
|
|
|
copy_dlls_beside_windows_executable()
|