cmake_install.cmake 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. # Install script for directory: /Users/caner/Desktop/CloudCompare/ccViewer
  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 "")
  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. # Is this installation the result of a crosscompile?
  27. if(NOT DEFINED CMAKE_CROSSCOMPILING)
  28. set(CMAKE_CROSSCOMPILING "FALSE")
  29. endif()
  30. # Set path to fallback-tool for dependency-resolution.
  31. if(NOT DEFINED CMAKE_OBJDUMP)
  32. set(CMAKE_OBJDUMP "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/objdump")
  33. endif()
  34. if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
  35. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/ccViewer" TYPE DIRECTORY FILES "/Users/caner/Desktop/CloudCompare/build/ccViewer/deployqt//ccViewer.app" USE_SOURCE_PERMISSIONS)
  36. endif()
  37. if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
  38. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/ccViewer" TYPE FILE FILES "/Users/caner/Desktop/CloudCompare/ccViewer/bin_other/license.txt")
  39. endif()
  40. if(CMAKE_INSTALL_COMPONENT STREQUAL "Runtime" OR NOT CMAKE_INSTALL_COMPONENT)
  41. list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES
  42. "/usr/local/ccViewer/ccViewer.app/Contents/PlugIns/ccPlugins/libQCORE_IO_PLUGIN.dylib")
  43. if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION)
  44. message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}")
  45. endif()
  46. if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION)
  47. message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}")
  48. endif()
  49. file(INSTALL DESTINATION "/usr/local/ccViewer/ccViewer.app/Contents/PlugIns/ccPlugins" TYPE SHARED_LIBRARY FILES "/Users/caner/Desktop/CloudCompare/build/plugins/core/IO/qCoreIO/libQCORE_IO_PLUGIN.dylib")
  50. if(EXISTS "$ENV{DESTDIR}/usr/local/ccViewer/ccViewer.app/Contents/PlugIns/ccPlugins/libQCORE_IO_PLUGIN.dylib" AND
  51. NOT IS_SYMLINK "$ENV{DESTDIR}/usr/local/ccViewer/ccViewer.app/Contents/PlugIns/ccPlugins/libQCORE_IO_PLUGIN.dylib")
  52. execute_process(COMMAND /usr/bin/install_name_tool
  53. -delete_rpath "/Users/caner/Desktop/CloudCompare/build/libs/CCPluginAPI"
  54. -delete_rpath "/Users/caner/Desktop/CloudCompare/build/libs/qCC_glWindow"
  55. -delete_rpath "/Users/caner/Desktop/CloudCompare/build/libs/qCC_io"
  56. -delete_rpath "/Users/caner/Desktop/CloudCompare/build/libs/qCC_db"
  57. -delete_rpath "/Users/caner/Desktop/CloudCompare/build/libs/qCC_db/extern/CCCoreLib"
  58. -delete_rpath "/Users/caner/Desktop/CloudCompare/build/libs/CCFbo"
  59. "$ENV{DESTDIR}/usr/local/ccViewer/ccViewer.app/Contents/PlugIns/ccPlugins/libQCORE_IO_PLUGIN.dylib")
  60. if(CMAKE_INSTALL_DO_STRIP)
  61. execute_process(COMMAND "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip" -x "$ENV{DESTDIR}/usr/local/ccViewer/ccViewer.app/Contents/PlugIns/ccPlugins/libQCORE_IO_PLUGIN.dylib")
  62. endif()
  63. endif()
  64. endif()
  65. if(CMAKE_INSTALL_COMPONENT STREQUAL "Runtime" OR NOT CMAKE_INSTALL_COMPONENT)
  66. endif()
  67. if(NOT CMAKE_INSTALL_LOCAL_ONLY)
  68. # Include the install script for each subdirectory.
  69. include("/Users/caner/Desktop/CloudCompare/build/ccViewer/Mac/cmake_install.cmake")
  70. endif()
  71. string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
  72. "${CMAKE_INSTALL_MANIFEST_FILES}")
  73. if(CMAKE_INSTALL_LOCAL_ONLY)
  74. file(WRITE "/Users/caner/Desktop/CloudCompare/build/ccViewer/install_local_manifest.txt"
  75. "${CMAKE_INSTALL_MANIFEST_CONTENT}")
  76. endif()