cmake_install.cmake 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # Install script for directory: /home/cicv/work/pji_desktop/simulation/track_space/src/trajectory
  2. # Set the install prefix
  3. if(NOT DEFINED CMAKE_INSTALL_PREFIX)
  4. set(CMAKE_INSTALL_PREFIX "/home/cicv/work/pji_desktop/simulation/track_space/install")
  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. # Install shared libraries without execute permission?
  27. if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
  28. set(CMAKE_INSTALL_SO_NO_EXE "1")
  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. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
  35. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" TYPE FILE FILES "/home/cicv/work/pji_desktop/simulation/track_space/build/trajectory/catkin_generated/installspace/trajectory.pc")
  36. endif()
  37. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
  38. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/trajectory/cmake" TYPE FILE FILES
  39. "/home/cicv/work/pji_desktop/simulation/track_space/build/trajectory/catkin_generated/installspace/trajectoryConfig.cmake"
  40. "/home/cicv/work/pji_desktop/simulation/track_space/build/trajectory/catkin_generated/installspace/trajectoryConfig-version.cmake"
  41. )
  42. endif()
  43. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
  44. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/trajectory" TYPE FILE FILES "/home/cicv/work/pji_desktop/simulation/track_space/src/trajectory/package.xml")
  45. endif()
  46. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
  47. if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/trajectory/demo_node" AND
  48. NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/trajectory/demo_node")
  49. file(RPATH_CHECK
  50. FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/trajectory/demo_node"
  51. RPATH "")
  52. endif()
  53. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/trajectory" TYPE EXECUTABLE FILES "/home/cicv/work/pji_desktop/simulation/track_space/devel/lib/trajectory/demo_node")
  54. if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/trajectory/demo_node" AND
  55. NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/trajectory/demo_node")
  56. file(RPATH_CHANGE
  57. FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/trajectory/demo_node"
  58. OLD_RPATH "/opt/ros/noetic/lib:"
  59. NEW_RPATH "")
  60. if(CMAKE_INSTALL_DO_STRIP)
  61. execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/trajectory/demo_node")
  62. endif()
  63. endif()
  64. endif()