mirror of
https://github.com/lubosz/overte.git
synced 2025-08-08 03:08:00 +02:00
download and link oculus platform for oculus plugin
This commit is contained in:
parent
825fc1cfa1
commit
4278d7b20d
3 changed files with 94 additions and 15 deletions
32
cmake/externals/LibOVRPlatform/CMakeLists.txt
vendored
Normal file
32
cmake/externals/LibOVRPlatform/CMakeLists.txt
vendored
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
include(ExternalProject)
|
||||||
|
include(SelectLibraryConfigurations)
|
||||||
|
|
||||||
|
set(EXTERNAL_NAME LibOVRPlatform)
|
||||||
|
|
||||||
|
string(TOUPPER ${EXTERNAL_NAME} EXTERNAL_NAME_UPPER)
|
||||||
|
|
||||||
|
if (WIN32)
|
||||||
|
|
||||||
|
ExternalProject_Add(
|
||||||
|
${EXTERNAL_NAME}
|
||||||
|
URL http://hifi-public.s3.amazonaws.com/dependencies/OVRPlatformSDK_v1.10.0.zip
|
||||||
|
URL_MD5 e6c8264af16d904e6506acd5172fa0a9
|
||||||
|
CONFIGURE_COMMAND ""
|
||||||
|
BUILD_COMMAND ""
|
||||||
|
INSTALL_COMMAND ""
|
||||||
|
LOG_DOWNLOAD 1
|
||||||
|
)
|
||||||
|
|
||||||
|
ExternalProject_Get_Property(${EXTERNAL_NAME} SOURCE_DIR)
|
||||||
|
|
||||||
|
if ("${CMAKE_SIZEOF_VOID_P}" EQUAL "8")
|
||||||
|
set(${EXTERNAL_NAME_UPPER}_LIB ${SOURCE_DIR}/Windows/LibOVRPlatform64_1.lib CACHE TYPE INTERNAL)
|
||||||
|
else()
|
||||||
|
set(${EXTERNAL_NAME_UPPER}_LIB ${SOURCE_DIR}/Windows/LibOVRPlatform32_1.lib CACHE TYPE INTERNAL)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(${EXTERNAL_NAME_UPPER}_INCLUDE_DIRS ${SOURCE_DIR}/Include CACHE TYPE INTERNAL)
|
||||||
|
endif ()
|
||||||
|
|
||||||
|
# Hide this external target (for ide users)
|
||||||
|
set_target_properties(${EXTERNAL_NAME} PROPERTIES FOLDER "hidden/externals")
|
41
cmake/modules/FindLibOVRPlatform.cmake
Normal file
41
cmake/modules/FindLibOVRPlatform.cmake
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
#
|
||||||
|
# FindLibOVRPlatform.cmake
|
||||||
|
#
|
||||||
|
# Try to find the LibOVRPlatform library to use the Oculus Platform SDK
|
||||||
|
#
|
||||||
|
# You must provide a LIBOVRPLATFORM_ROOT_DIR which contains Windows and Include directories
|
||||||
|
#
|
||||||
|
# Once done this will define
|
||||||
|
#
|
||||||
|
# LIBOVRPLATFORM_FOUND - system found Oculus Platform SDK
|
||||||
|
# LIBOVRPLATFORM_INCLUDE_DIRS - the Oculus Platform include directory
|
||||||
|
# LIBOVRPLATFORM_LIBRARIES - Link this to use Oculus Platform
|
||||||
|
#
|
||||||
|
# Created on December 16, 2016 by Stephen Birarda
|
||||||
|
# Copyright 2016 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
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
if (WIN32)
|
||||||
|
# setup hints for LIBOVRPLATFORM search
|
||||||
|
include("${MACRO_DIR}/HifiLibrarySearchHints.cmake")
|
||||||
|
hifi_library_search_hints("LibOVRPlatform")
|
||||||
|
|
||||||
|
find_path(LIBOVRPLATFORM_INCLUDE_DIRS OVR_Platform.h PATH_SUFFIXES Include HINTS ${LIBOVRPLATFORM_SEARCH_DIRS})
|
||||||
|
|
||||||
|
if ("${CMAKE_SIZEOF_VOID_P}" EQUAL "8")
|
||||||
|
set(_LIB_NAME LibOVRPlatform64_1.lib)
|
||||||
|
else()
|
||||||
|
set(_LIB_NAME LibOVRPlatform32_1.lib)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
find_library(LIBOVRPLATFORM_LIBRARY_RELEASE NAMES ${_LIB_NAME} PATH_SUFFIXES Windows HINTS ${LIBOVRPLATFORM_SEARCH_DIRS})
|
||||||
|
|
||||||
|
include(FindPackageHandleStandardArgs)
|
||||||
|
find_package_handle_standard_args(LIBOVRPLATFORM DEFAULT_MSG LIBOVRPLATFORM_INCLUDE_DIRS LIBOVRPLATFORM_LIBRARIES)
|
||||||
|
|
||||||
|
mark_as_advanced(LIBOVRPLATFORM_INCLUDE_DIRS LIBOVRPLATFORM_LIBRARIES LIBOVRPLATFORM_SEARCH_DIRS)
|
||||||
|
endif ()
|
|
@ -8,21 +8,27 @@
|
||||||
|
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
|
|
||||||
# we're using static GLEW, so define GLEW_STATIC
|
# we're using static GLEW, so define GLEW_STATIC
|
||||||
add_definitions(-DGLEW_STATIC)
|
add_definitions(-DGLEW_STATIC)
|
||||||
|
|
||||||
set(TARGET_NAME oculus)
|
set(TARGET_NAME oculus)
|
||||||
setup_hifi_plugin(Multimedia)
|
setup_hifi_plugin(Multimedia)
|
||||||
link_hifi_libraries(shared gl gpu gpu-gl controllers ui
|
link_hifi_libraries(
|
||||||
plugins ui-plugins display-plugins input-plugins
|
shared gl gpu gpu-gl controllers ui
|
||||||
audio-client networking render-utils)
|
plugins ui-plugins display-plugins input-plugins
|
||||||
|
audio-client networking render-utils
|
||||||
include_hifi_library_headers(octree)
|
)
|
||||||
|
|
||||||
add_dependency_external_projects(LibOVR)
|
|
||||||
find_package(LibOVR REQUIRED)
|
|
||||||
target_include_directories(${TARGET_NAME} PRIVATE ${LIBOVR_INCLUDE_DIRS})
|
|
||||||
target_link_libraries(${TARGET_NAME} ${LIBOVR_LIBRARIES})
|
|
||||||
target_link_libraries(${TARGET_NAME} Winmm.lib)
|
|
||||||
|
|
||||||
|
include_hifi_library_headers(octree)
|
||||||
|
|
||||||
|
add_dependency_external_projects(LibOVR)
|
||||||
|
find_package(LibOVR REQUIRED)
|
||||||
|
target_include_directories(${TARGET_NAME} PRIVATE ${LIBOVR_INCLUDE_DIRS})
|
||||||
|
target_link_libraries(${TARGET_NAME} ${LIBOVR_LIBRARIES})
|
||||||
|
target_link_libraries(${TARGET_NAME} Winmm.lib)
|
||||||
|
|
||||||
|
add_dependency_external_projects(LibOVRPlatform)
|
||||||
|
find_package(LibOVRPlatform REQUIRED)
|
||||||
|
target_include_directories(${TARGET_NAME} PRIVATE ${LIBOVRPLATFORM_INCLUDE_DIRS})
|
||||||
|
target_link_libraries(${TARGET_NAME} ${LIBOVRPLATFORM_LIBRARIES})
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Reference in a new issue