From 15c9408b9f3fe640399d28187452732674fbb8f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20Gro=C3=9F?= Date: Sun, 4 Feb 2024 15:47:00 +0100 Subject: [PATCH] Fix OpenVR related build error on aarch64 introduced in a79cd1e6cedd7f33cf2815b29ff551ecd558d5b7 --- plugins/CMakeLists.txt | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt index ad55391e7e..c68abefa77 100644 --- a/plugins/CMakeLists.txt +++ b/plugins/CMakeLists.txt @@ -1,9 +1,10 @@ # # Created by Bradley Austin Davis on 2015/10/25 # Copyright 2015 High Fidelity, Inc. +# Copyright 2023-2024 Overte e.V. # # Distributed under the Apache License, Version 2.0. -# See the accompanying file LICENSE or http:#www.apache.org/licenses/LICENSE-2.0.html +# See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html # # add the plugin directories @@ -19,9 +20,11 @@ if (NOT SERVER_ONLY AND NOT ANDROID) add_subdirectory(${DIR}) endif() - # Note: OpenVR is a Steam thing, which is different from OVR, which is an Oculus SDK component. - set(DIR "openvr") - add_subdirectory(${DIR}) + if (NOT CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64") + # Note: OpenVR is a Steam thing, which is different from OVR, which is an Oculus SDK component. + set(DIR "openvr") + add_subdirectory(${DIR}) + endif() set(DIR "hifiSdl2") add_subdirectory(${DIR})