The path to libOVR.lib has changed in more recent versions of the Oculus SDK.

They no longer ship separate Debug and Release binaries.
This commit is contained in:
mcc 2020-02-17 14:45:03 -05:00
parent 18dcb07b98
commit 8d7427d74a
1 changed files with 1 additions and 5 deletions

View File

@ -271,11 +271,7 @@ if(LOVR_ENABLE_HEADSET AND LOVR_USE_OCULUS)
if(NOT LOVR_OCULUS_PATH)
message(FATAL_ERROR "LOVR_USE_OCULUS requires the LOVR_OCULUS_PATH to be set to the location of the Oculus Desktop SDK (LibOVR) folder")
endif()
if(CMAKE_BUILD_TYPE STREQUAL "Release")
set(OCULUS_BUILD_TYPE "Release")
else()
set(OCULUS_BUILD_TYPE "Debug")
endif()
set(OCULUS_BUILD_TYPE "Release")
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
set(OCULUS_ARCH "x64")
else()