mirror of
https://github.com/overte-org/overte.git
synced 2025-06-04 22:00:59 +02:00
19 lines
No EOL
613 B
CMake
19 lines
No EOL
613 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)
|
|
add_dependency_external_projects(glew)
|
|
find_package(GLEW REQUIRED)
|
|
target_include_directories(${TARGET_NAME} PRIVATE ${GLEW_INCLUDE_DIRS})
|
|
target_link_libraries(${TARGET_NAME} ${GLEW_LIBRARIES} 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() |