|
| 1 | +cmake_minimum_required(VERSION 3.16...3.21) |
| 2 | + |
| 3 | +# These are part of the public API. Projects should use them to provide a |
| 4 | +# consistent set of prefix-relative destinations. |
| 5 | +if(NOT QT_DEPLOY_BIN_DIR) |
| 6 | + set(QT_DEPLOY_BIN_DIR "bin") |
| 7 | +endif() |
| 8 | +if(NOT QT_DEPLOY_LIBEXEC_DIR) |
| 9 | + set(QT_DEPLOY_LIBEXEC_DIR "libexec") |
| 10 | +endif() |
| 11 | +if(NOT QT_DEPLOY_LIB_DIR) |
| 12 | + set(QT_DEPLOY_LIB_DIR "lib") |
| 13 | +endif() |
| 14 | +if(NOT QT_DEPLOY_PLUGINS_DIR) |
| 15 | + set(QT_DEPLOY_PLUGINS_DIR "share/qt/plugins") |
| 16 | +endif() |
| 17 | +if(NOT QT_DEPLOY_QML_DIR) |
| 18 | + set(QT_DEPLOY_QML_DIR "share/qt/qml") |
| 19 | +endif() |
| 20 | +if(NOT QT_DEPLOY_TRANSLATIONS_DIR) |
| 21 | + set(QT_DEPLOY_TRANSLATIONS_DIR "share/qt/translations") |
| 22 | +endif() |
| 23 | +if(NOT QT_DEPLOY_PREFIX) |
| 24 | + set(QT_DEPLOY_PREFIX "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}") |
| 25 | +endif() |
| 26 | +if(QT_DEPLOY_PREFIX STREQUAL "") |
| 27 | + set(QT_DEPLOY_PREFIX .) |
| 28 | +endif() |
| 29 | +if(NOT QT_DEPLOY_IGNORED_LIB_DIRS) |
| 30 | + set(QT_DEPLOY_IGNORED_LIB_DIRS "") |
| 31 | +endif() |
| 32 | + |
| 33 | +# These are internal implementation details. They may be removed at any time. |
| 34 | +set(__QT_DEPLOY_SYSTEM_NAME "Darwin") |
| 35 | +set(__QT_DEPLOY_SHARED_LIBRARY_SUFFIX ".dylib") |
| 36 | +set(__QT_DEPLOY_IS_SHARED_LIBS_BUILD "ON") |
| 37 | +set(__QT_DEPLOY_TOOL "/opt/homebrew/bin/macdeployqt") |
| 38 | +set(__QT_DEPLOY_IMPL_DIR "/Volumes/NeuralSilicon/OSDEV/Topluluk/ro-Control/build/.qt") |
| 39 | +set(__QT_DEPLOY_VERBOSE "") |
| 40 | +set(__QT_CMAKE_EXPORT_NAMESPACE "Qt6") |
| 41 | +set(__QT_LIBINFIX "") |
| 42 | +set(__QT_DEPLOY_GENERATOR_IS_MULTI_CONFIG "0") |
| 43 | +set(__QT_DEPLOY_ACTIVE_CONFIG "Debug") |
| 44 | +set(__QT_NO_CREATE_VERSIONLESS_FUNCTIONS "") |
| 45 | +set(__QT_DEFAULT_MAJOR_VERSION "6") |
| 46 | +set(__QT_DEPLOY_QT_ADDITIONAL_PACKAGES_PREFIX_PATH "") |
| 47 | +set(__QT_DEPLOY_QT_INSTALL_PREFIX "/opt/homebrew") |
| 48 | +set(__QT_DEPLOY_QT_INSTALL_BINS "bin") |
| 49 | +set(__QT_DEPLOY_QT_INSTALL_DATA "share/qt") |
| 50 | +set(__QT_DEPLOY_QT_INSTALL_DESCRIPTIONSDIR "share/qt/modules") |
| 51 | +set(__QT_DEPLOY_QT_INSTALL_LIBEXECS "share/qt/libexec") |
| 52 | +set(__QT_DEPLOY_QT_INSTALL_PLUGINS "share/qt/plugins") |
| 53 | +set(__QT_DEPLOY_QT_INSTALL_TRANSLATIONS "share/qt/translations") |
| 54 | +set(__QT_DEPLOY_TARGET_QT_PATHS_PATH "/opt/homebrew/bin/qtpaths6") |
| 55 | +set(__QT_DEPLOY_MUST_ADJUST_PLUGINS_RPATH "OFF") |
| 56 | +set(__QT_DEPLOY_USE_PATCHELF "") |
| 57 | +set(__QT_DEPLOY_PATCHELF_EXECUTABLE "") |
| 58 | +set(__QT_DEPLOY_QT_IS_MULTI_CONFIG_BUILD_WITH_DEBUG "FALSE") |
| 59 | +set(__QT_DEPLOY_QT_DEBUG_POSTFIX "") |
| 60 | + |
| 61 | +# Define the CMake commands to be made available during deployment. |
| 62 | +set(__qt_deploy_support_files |
| 63 | + "/Volumes/NeuralSilicon/OSDEV/Topluluk/ro-Control/build/.qt/QtDeployTargets.cmake" |
| 64 | + "/opt/homebrew/Cellar/qtbase/6.10.2/lib/cmake/Qt6Core/Qt6CoreDeploySupport.cmake" |
| 65 | + "/opt/homebrew/Cellar/qtdeclarative/6.10.2/lib/cmake/Qt6Qml/Qt6QmlDeploySupport.cmake" |
| 66 | +) |
| 67 | +foreach(__qt_deploy_support_file IN LISTS __qt_deploy_support_files) |
| 68 | + include("${__qt_deploy_support_file}") |
| 69 | +endforeach() |
| 70 | + |
| 71 | +unset(__qt_deploy_support_file) |
| 72 | +unset(__qt_deploy_support_files) |
0 commit comments