cmake_install.cmake 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. # Install script for directory: D:/code/code/DriverPlatform-V3.1
  2. # Set the install prefix
  3. if(NOT DEFINED CMAKE_INSTALL_PREFIX)
  4. set(CMAKE_INSTALL_PREFIX "D:/code/code/DriverPlatform-V3.1/out/install/x64-Debug")
  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. # Is this installation the result of a crosscompile?
  27. if(NOT DEFINED CMAKE_CROSSCOMPILING)
  28. set(CMAKE_CROSSCOMPILING "FALSE")
  29. endif()
  30. if(NOT CMAKE_INSTALL_LOCAL_ONLY)
  31. # Include the install script for the subdirectory.
  32. include("D:/code/code/DriverPlatform-V3.1/out/build/x64-Debug/Crc64/cmake_install.cmake")
  33. endif()
  34. if(NOT CMAKE_INSTALL_LOCAL_ONLY)
  35. # Include the install script for the subdirectory.
  36. include("D:/code/code/DriverPlatform-V3.1/out/build/x64-Debug/DevTree/cmake_install.cmake")
  37. endif()
  38. if(NOT CMAKE_INSTALL_LOCAL_ONLY)
  39. # Include the install script for the subdirectory.
  40. include("D:/code/code/DriverPlatform-V3.1/out/build/x64-Debug/ResDataObject/cmake_install.cmake")
  41. endif()
  42. if(NOT CMAKE_INSTALL_LOCAL_ONLY)
  43. # Include the install script for the subdirectory.
  44. include("D:/code/code/DriverPlatform-V3.1/out/build/x64-Debug/CcosLock/cmake_install.cmake")
  45. endif()
  46. string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
  47. "${CMAKE_INSTALL_MANIFEST_FILES}")
  48. if(CMAKE_INSTALL_LOCAL_ONLY)
  49. file(WRITE "D:/code/code/DriverPlatform-V3.1/out/build/x64-Debug/install_local_manifest.txt"
  50. "${CMAKE_INSTALL_MANIFEST_CONTENT}")
  51. endif()
  52. if(CMAKE_INSTALL_COMPONENT)
  53. if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$")
  54. set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
  55. else()
  56. string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}")
  57. set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt")
  58. unset(CMAKE_INST_COMP_HASH)
  59. endif()
  60. else()
  61. set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
  62. endif()
  63. if(NOT CMAKE_INSTALL_LOCAL_ONLY)
  64. file(WRITE "D:/code/code/DriverPlatform-V3.1/out/build/x64-Debug/${CMAKE_INSTALL_MANIFEST}"
  65. "${CMAKE_INSTALL_MANIFEST_CONTENT}")
  66. endif()