cmake_install.cmake 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # Install script for directory: /Users/caner/Desktop/CloudCompare/libs
  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(NOT CMAKE_INSTALL_LOCAL_ONLY)
  35. # Include the install script for each subdirectory.
  36. include("/Users/caner/Desktop/CloudCompare/build/libs/CCAppCommon/cmake_install.cmake")
  37. include("/Users/caner/Desktop/CloudCompare/build/libs/CCFbo/cmake_install.cmake")
  38. include("/Users/caner/Desktop/CloudCompare/build/libs/CCPluginStub/cmake_install.cmake")
  39. include("/Users/caner/Desktop/CloudCompare/build/libs/CCPluginAPI/cmake_install.cmake")
  40. include("/Users/caner/Desktop/CloudCompare/build/libs/qCC_db/cmake_install.cmake")
  41. include("/Users/caner/Desktop/CloudCompare/build/libs/qCC_glWindow/cmake_install.cmake")
  42. include("/Users/caner/Desktop/CloudCompare/build/libs/qCC_io/cmake_install.cmake")
  43. endif()
  44. string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
  45. "${CMAKE_INSTALL_MANIFEST_FILES}")
  46. if(CMAKE_INSTALL_LOCAL_ONLY)
  47. file(WRITE "/Users/caner/Desktop/CloudCompare/build/libs/install_local_manifest.txt"
  48. "${CMAKE_INSTALL_MANIFEST_CONTENT}")
  49. endif()