cmake_install.cmake 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # Install script for directory: D:/code/code/PhysicalDevice/Generator
  2. # Set the install prefix
  3. if(NOT DEFINED CMAKE_INSTALL_PREFIX)
  4. set(CMAKE_INSTALL_PREFIX "D:/code/code/PhysicalDevice/Generator/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. string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
  31. "${CMAKE_INSTALL_MANIFEST_FILES}")
  32. if(CMAKE_INSTALL_LOCAL_ONLY)
  33. file(WRITE "D:/code/code/PhysicalDevice/Generator/out/build/x64-Debug/install_local_manifest.txt"
  34. "${CMAKE_INSTALL_MANIFEST_CONTENT}")
  35. endif()
  36. if(CMAKE_INSTALL_COMPONENT)
  37. if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$")
  38. set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
  39. else()
  40. string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}")
  41. set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt")
  42. unset(CMAKE_INST_COMP_HASH)
  43. endif()
  44. else()
  45. set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
  46. endif()
  47. if(NOT CMAKE_INSTALL_LOCAL_ONLY)
  48. file(WRITE "D:/code/code/PhysicalDevice/Generator/out/build/x64-Debug/${CMAKE_INSTALL_MANIFEST}"
  49. "${CMAKE_INSTALL_MANIFEST_CONTENT}")
  50. endif()