mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 17:55:36 +02:00
21 lines
667 B
CMake
21 lines
667 B
CMake
|
|
set(TARGET_NAME controllers-test)
|
|
|
|
# This is not a testcase -- just set it up as a regular hifi project
|
|
setup_hifi_project(Script Qml)
|
|
set_target_properties(${TARGET_NAME} PROPERTIES FOLDER "Tests/manual-tests/")
|
|
|
|
setup_memory_debugger()
|
|
|
|
# link in the shared libraries
|
|
link_hifi_libraries(shared gl script-engine plugins render-utils ui-plugins input-plugins display-plugins controllers)
|
|
|
|
|
|
if (WIN32)
|
|
add_dependency_external_projects(OpenVR)
|
|
find_package(OpenVR REQUIRED)
|
|
target_include_directories(${TARGET_NAME} PRIVATE ${OPENVR_INCLUDE_DIRS})
|
|
target_link_libraries(${TARGET_NAME} ${OPENVR_LIBRARIES})
|
|
endif()
|
|
|
|
package_libraries_for_deployment()
|