# Copyright (C) 2024 The Qt Company Ltd. # SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause cmake_minimum_required(VERSION 3.16) project(xr_interaction LANGUAGES CXX) set(CMAKE_AUTOMOC ON) find_package(Qt6 COMPONENTS Core Gui Quick Quick3D Quick3DXr) qt6_policy(SET QTP0002 NEW) add_subdirectory("../xr_shared" "xr_shared") qt_add_executable(xr_interaction MANUAL_FINALIZATION main.cpp android/AndroidManifest.xml ) set_target_properties(xr_interaction PROPERTIES WIN32_EXECUTABLE TRUE MACOSX_BUNDLE TRUE ) target_link_libraries(xr_interaction PUBLIC Qt::Core Qt::Gui Qt::Quick Qt::Quick3D Qt::Quick3DXr ) qt_add_qml_module(xr_interaction URI Example VERSION 1.0 QML_FILES main.qml Scene.qml GadgetBox.qml RESOURCES meshes/arrow_mesh.mesh meshes/rotate_mesh.mesh meshes/resize_mesh.mesh NO_RESOURCE_TARGET_PATH ) if(ANDROID) set_property(TARGET xr_interaction APPEND PROPERTY QT_ANDROID_PACKAGE_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/android) endif() if (APPLE AND CMAKE_SYSTEM_NAME STREQUAL "visionOS") set_target_properties(xr_interaction PROPERTIES MACOSX_BUNDLE_GUI_IDENTIFIER io.qt.xr_interaction MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/visionos/MacOSXBundleInfo.plist.in ) endif() qt_finalize_executable(xr_interaction) install(TARGETS xr_interaction BUNDLE DESTINATION . RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} ) qt_generate_deploy_qml_app_script( TARGET xr_interaction OUTPUT_SCRIPT deploy_script MACOS_BUNDLE_POST_BUILD NO_UNSUPPORTED_PLATFORM_ERROR DEPLOY_USER_QML_MODULES_ON_UNSUPPORTED_PLATFORM ) install(SCRIPT ${deploy_script})