mirror of
https://github.com/overte-org/overte.git
synced 2025-06-02 04:40:59 +02:00
16 lines
451 B
CMake
16 lines
451 B
CMake
|
|
set(TARGET_NAME "ui-test")
|
|
|
|
# This is not a testcase -- just set it up as a regular hifi project
|
|
setup_hifi_project(Widgets OpenGL Network Qml Quick Script)
|
|
|
|
set_target_properties(${TARGET_NAME} PROPERTIES FOLDER "Tests/manual-tests/")
|
|
|
|
if (WIN32)
|
|
target_link_libraries(${TARGET_NAME} wsock32.lib opengl32.lib Winmm.lib)
|
|
endif()
|
|
|
|
# link in the shared libraries
|
|
link_hifi_libraries(ui render-utils gpu shared)
|
|
|
|
copy_dlls_beside_windows_executable()
|