奥特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.

82 line
2.8KB

  1. # Install script for directory: /home/suzj/AuseftDDSPlugins/plugins/AQTSampleMachinePlug
  2. # Set the install prefix
  3. if(NOT DEFINED CMAKE_INSTALL_PREFIX)
  4. set(CMAKE_INSTALL_PREFIX "/usr/local")
  5. endif()
  6. string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
  7. # Set the install configuration name.
  8. if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
  9. if(BUILD_TYPE)
  10. string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
  11. CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
  12. else()
  13. set(CMAKE_INSTALL_CONFIG_NAME "Debug")
  14. endif()
  15. message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
  16. endif()
  17. # Set the component getting installed.
  18. if(NOT CMAKE_INSTALL_COMPONENT)
  19. if(COMPONENT)
  20. message(STATUS "Install component: \"${COMPONENT}\"")
  21. set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
  22. else()
  23. set(CMAKE_INSTALL_COMPONENT)
  24. endif()
  25. endif()
  26. # Install shared libraries without execute permission?
  27. if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
  28. set(CMAKE_INSTALL_SO_NO_EXE "1")
  29. endif()
  30. # Is this installation the result of a crosscompile?
  31. if(NOT DEFINED CMAKE_CROSSCOMPILING)
  32. set(CMAKE_CROSSCOMPILING "FALSE")
  33. endif()
  34. # Set default install directory permissions.
  35. if(NOT DEFINED CMAKE_OBJDUMP)
  36. set(CMAKE_OBJDUMP "/usr/bin/objdump")
  37. endif()
  38. if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
  39. foreach(file
  40. "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/AQTSampleMachinePlug.so.1.0.0"
  41. "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/AQTSampleMachinePlug.so.1"
  42. )
  43. if(EXISTS "${file}" AND
  44. NOT IS_SYMLINK "${file}")
  45. file(RPATH_CHECK
  46. FILE "${file}"
  47. RPATH "\$ORIGIN:/usr/local/lib:/usr/local/lib:/home/suzj/Qt/6.8.1/gcc_64/lib")
  48. endif()
  49. endforeach()
  50. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE SHARED_LIBRARY FILES
  51. "/home/suzj/AuseftDDSPlugins/build/bin/AQTSampleMachinePlug.so.1.0.0"
  52. "/home/suzj/AuseftDDSPlugins/build/bin/AQTSampleMachinePlug.so.1"
  53. )
  54. foreach(file
  55. "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/AQTSampleMachinePlug.so.1.0.0"
  56. "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/AQTSampleMachinePlug.so.1"
  57. )
  58. if(EXISTS "${file}" AND
  59. NOT IS_SYMLINK "${file}")
  60. file(RPATH_CHANGE
  61. FILE "${file}"
  62. OLD_RPATH "/home/suzj/Qt/6.8.1/gcc_64/lib::::::::::::::::::::::::::::::::::::::"
  63. NEW_RPATH "\$ORIGIN:/usr/local/lib:/usr/local/lib:/home/suzj/Qt/6.8.1/gcc_64/lib")
  64. if(CMAKE_INSTALL_DO_STRIP)
  65. execute_process(COMMAND "/usr/bin/strip" "${file}")
  66. endif()
  67. endif()
  68. endforeach()
  69. endif()
  70. if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
  71. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE SHARED_LIBRARY FILES "/home/suzj/AuseftDDSPlugins/build/bin/AQTSampleMachinePlug.so")
  72. endif()