cmake_install.cmake 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # Install script for directory: /data/data/com.termux/files/home/projects/uidefedit
  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 "0")
  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 path to fallback-tool for dependency-resolution.
  35. if(NOT DEFINED CMAKE_OBJDUMP)
  36. set(CMAKE_OBJDUMP "/data/data/com.termux/files/usr/bin/llvm-objdump")
  37. endif()
  38. if(NOT CMAKE_INSTALL_LOCAL_ONLY)
  39. # Include the install script for the subdirectory.
  40. include("/data/data/com.termux/files/home/projects/uidefedit/build/third_party/libxml2/cmake_install.cmake")
  41. endif()
  42. string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
  43. "${CMAKE_INSTALL_MANIFEST_FILES}")
  44. if(CMAKE_INSTALL_LOCAL_ONLY)
  45. file(WRITE "/data/data/com.termux/files/home/projects/uidefedit/build/install_local_manifest.txt"
  46. "${CMAKE_INSTALL_MANIFEST_CONTENT}")
  47. endif()
  48. if(CMAKE_INSTALL_COMPONENT)
  49. if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$")
  50. set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
  51. else()
  52. string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}")
  53. set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt")
  54. unset(CMAKE_INST_COMP_HASH)
  55. endif()
  56. else()
  57. set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
  58. endif()
  59. if(NOT CMAKE_INSTALL_LOCAL_ONLY)
  60. file(WRITE "/data/data/com.termux/files/home/projects/uidefedit/build/${CMAKE_INSTALL_MANIFEST}"
  61. "${CMAKE_INSTALL_MANIFEST_CONTENT}")
  62. endif()