cmake_install.cmake 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # Install script for directory: D:/Project/ble_auracast/test/NimBLE_Conn_Disconn
  2. # Set the install prefix
  3. if(NOT DEFINED CMAKE_INSTALL_PREFIX)
  4. set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/NimBLE_Conn_Disconn")
  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 "TRUE")
  29. endif()
  30. # Set path to fallback-tool for dependency-resolution.
  31. if(NOT DEFINED CMAKE_OBJDUMP)
  32. set(CMAKE_OBJDUMP "C:/Dev/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
  33. endif()
  34. if(NOT CMAKE_INSTALL_LOCAL_ONLY)
  35. # Include the install script for the subdirectory.
  36. include("D:/Project/ble_auracast/test/NimBLE_Conn_Disconn/build/esp-idf/cmake_install.cmake")
  37. endif()
  38. if(CMAKE_INSTALL_COMPONENT)
  39. if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$")
  40. set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
  41. else()
  42. string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}")
  43. set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt")
  44. unset(CMAKE_INST_COMP_HASH)
  45. endif()
  46. else()
  47. set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
  48. endif()
  49. if(NOT CMAKE_INSTALL_LOCAL_ONLY)
  50. string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
  51. "${CMAKE_INSTALL_MANIFEST_FILES}")
  52. file(WRITE "D:/Project/ble_auracast/test/NimBLE_Conn_Disconn/build/${CMAKE_INSTALL_MANIFEST}"
  53. "${CMAKE_INSTALL_MANIFEST_CONTENT}")
  54. endif()