mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-05-15 23:49:38 +02:00
27 lines
989 B
CMake
27 lines
989 B
CMake
#
|
|
# Created by Bradley Austin Davis on 2015/11/18
|
|
# Copyright 2015 High Fidelity, Inc.
|
|
#
|
|
# Distributed under the Apache License, Version 2.0.
|
|
# See the accompanying file LICENSE or http:#www.apache.org/licenses/LICENSE-2.0.html
|
|
#
|
|
|
|
# OpenVR is disabled until a) it works with threaded present and
|
|
# b) it doesn't interfere with Oculus SDK 0.8
|
|
if (FALSE)
|
|
#if (WIN32)
|
|
# we're using static GLEW, so define GLEW_STATIC
|
|
add_definitions(-DGLEW_STATIC)
|
|
set(TARGET_NAME openvr)
|
|
setup_hifi_plugin(OpenGL Script Qml Widgets)
|
|
link_hifi_libraries(shared gl networking controllers
|
|
plugins display-plugins input-plugins script-engine
|
|
render-utils model gpu render model-networking fbx)
|
|
|
|
include_hifi_library_headers(octree)
|
|
|
|
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()
|