奥特QT DDS 插件库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
2.6KB

  1. cmake_minimum_required(VERSION 3.16...3.21)
  2. # These are part of the public API. Projects should use them to provide a
  3. # consistent set of prefix-relative destinations.
  4. if(NOT QT_DEPLOY_BIN_DIR)
  5. set(QT_DEPLOY_BIN_DIR "bin")
  6. endif()
  7. if(NOT QT_DEPLOY_LIBEXEC_DIR)
  8. set(QT_DEPLOY_LIBEXEC_DIR "libexec")
  9. endif()
  10. if(NOT QT_DEPLOY_LIB_DIR)
  11. set(QT_DEPLOY_LIB_DIR "lib")
  12. endif()
  13. if(NOT QT_DEPLOY_PLUGINS_DIR)
  14. set(QT_DEPLOY_PLUGINS_DIR "plugins")
  15. endif()
  16. if(NOT QT_DEPLOY_QML_DIR)
  17. set(QT_DEPLOY_QML_DIR "qml")
  18. endif()
  19. if(NOT QT_DEPLOY_TRANSLATIONS_DIR)
  20. set(QT_DEPLOY_TRANSLATIONS_DIR "translations")
  21. endif()
  22. if(NOT QT_DEPLOY_PREFIX)
  23. set(QT_DEPLOY_PREFIX "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}")
  24. endif()
  25. if(QT_DEPLOY_PREFIX STREQUAL "")
  26. set(QT_DEPLOY_PREFIX .)
  27. endif()
  28. if(NOT QT_DEPLOY_IGNORED_LIB_DIRS)
  29. set(QT_DEPLOY_IGNORED_LIB_DIRS "/usr/local/lib/gcc/x86_64-pc-linux-gnu/10.5.0;/usr/local/lib64;/lib/x86_64-linux-gnu;/lib64;/usr/lib/x86_64-linux-gnu;/usr/lib64;/usr/local/lib")
  30. endif()
  31. # These are internal implementation details. They may be removed at any time.
  32. set(__QT_DEPLOY_SYSTEM_NAME "Linux")
  33. set(__QT_DEPLOY_IS_SHARED_LIBS_BUILD "ON")
  34. set(__QT_DEPLOY_TOOL "GRD")
  35. set(__QT_DEPLOY_IMPL_DIR "/home/suzj/AuseftDDSPlugins/build/.qt")
  36. set(__QT_DEPLOY_VERBOSE "")
  37. set(__QT_CMAKE_EXPORT_NAMESPACE "Qt6")
  38. set(__QT_DEPLOY_GENERATOR_IS_MULTI_CONFIG "0")
  39. set(__QT_DEPLOY_ACTIVE_CONFIG "Debug")
  40. set(__QT_NO_CREATE_VERSIONLESS_FUNCTIONS "")
  41. set(__QT_DEFAULT_MAJOR_VERSION "6")
  42. set(__QT_DEPLOY_QT_ADDITIONAL_PACKAGES_PREFIX_PATH "")
  43. set(__QT_DEPLOY_QT_INSTALL_PREFIX "/home/suzj/Qt/6.8.1/gcc_64")
  44. set(__QT_DEPLOY_QT_INSTALL_BINS "bin")
  45. set(__QT_DEPLOY_QT_INSTALL_DATA ".")
  46. set(__QT_DEPLOY_QT_INSTALL_LIBEXECS "libexec")
  47. set(__QT_DEPLOY_QT_INSTALL_PLUGINS "plugins")
  48. set(__QT_DEPLOY_QT_INSTALL_TRANSLATIONS "translations")
  49. set(__QT_DEPLOY_TARGET_QT_PATHS_PATH "/home/suzj/Qt/6.8.1/gcc_64/bin/qtpaths6")
  50. set(__QT_DEPLOY_PLUGINS "")
  51. set(__QT_DEPLOY_MUST_ADJUST_PLUGINS_RPATH "")
  52. set(__QT_DEPLOY_USE_PATCHELF "")
  53. set(__QT_DEPLOY_PATCHELF_EXECUTABLE "")
  54. set(__QT_DEPLOY_QT_IS_MULTI_CONFIG_BUILD_WITH_DEBUG "FALSE")
  55. set(__QT_DEPLOY_QT_DEBUG_POSTFIX "")
  56. # Define the CMake commands to be made available during deployment.
  57. set(__qt_deploy_support_files
  58. "/home/suzj/AuseftDDSPlugins/build/.qt/QtDeployTargets.cmake"
  59. "/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Core/Qt6CoreDeploySupport.cmake"
  60. "/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlDeploySupport.cmake"
  61. )
  62. foreach(__qt_deploy_support_file IN LISTS __qt_deploy_support_files)
  63. include("${__qt_deploy_support_file}")
  64. endforeach()
  65. unset(__qt_deploy_support_file)
  66. unset(__qt_deploy_support_files)