CMakeLists.txt 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. cmake_minimum_required(VERSION 2.8.3)
  2. project(runtime_manager)
  3. find_package(catkin REQUIRED COMPONENTS
  4. autoware_config_msgs
  5. autoware_msgs
  6. rospy
  7. std_msgs
  8. tablet_socket_msgs
  9. )
  10. catkin_package()
  11. catkin_install_python(
  12. PROGRAMS
  13. scripts/ftrace.py
  14. scripts/proc_manager.py
  15. scripts/rtmgr.py
  16. scripts/runtime_manager_dialog.py
  17. scripts/test_pub.py
  18. scripts/test_srv.py
  19. DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
  20. )
  21. install(
  22. PROGRAMS
  23. scripts/3dm_gx5_15.sh
  24. scripts/add_perm.sh
  25. scripts/adis16470.sh
  26. scripts/avt_vimba.sh
  27. scripts/gazebo.sh
  28. scripts/mti300.sh
  29. scripts/vg440.sh
  30. scripts/cleanup
  31. scripts/run
  32. scripts/run_proc_manager
  33. scripts/subnet_chk.py
  34. DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/scripts
  35. )
  36. install(
  37. FILES
  38. scripts/computing.yaml
  39. scripts/data.yaml
  40. scripts/empty.yaml
  41. scripts/interface.yaml
  42. scripts/main.yaml
  43. scripts/map.yaml
  44. scripts/qs.yaml
  45. scripts/rtmgr.wxg
  46. scripts/rtmgr_icon.xpm
  47. scripts/sensing.yaml
  48. scripts/setup.yaml
  49. scripts/simulation.yaml
  50. scripts/state.yaml
  51. scripts/status.yaml
  52. scripts/topics.yaml
  53. scripts/vector_map_files.yaml
  54. scripts/viewer.yaml
  55. DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
  56. )
  57. install(
  58. FILES
  59. scripts/images/autoware_logo_1.png
  60. scripts/images/autoware_logo_2.png
  61. scripts/images/autoware_logo_2_white.png
  62. scripts/images/axe.png
  63. scripts/images/database.png
  64. scripts/images/dec.png
  65. scripts/images/inc.png
  66. scripts/images/mobile.png
  67. scripts/images/nagoya_university.png
  68. scripts/images/tablet.png
  69. scripts/images/vehicle.png
  70. DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}/images
  71. )
  72. install(
  73. FILES
  74. scripts/avt_camera.launch
  75. scripts/calibration_publisher.launch
  76. scripts/ex_mat_pub.launch
  77. scripts/launch_files/check.launch
  78. scripts/launch_files/control.launch
  79. scripts/launch_files/init.launch
  80. scripts/launch_files/map.launch
  81. scripts/launch_files/perception.launch
  82. scripts/launch_files/planning.launch
  83. scripts/launch_files/sensor.launch
  84. scripts/launch_files/set.launch
  85. scripts/launch_files/velodyne_hdl32e.launch
  86. scripts/launch_files/velodyne_hdl64e_s2.launch
  87. scripts/launch_files/velodyne_hdl64e_s3.launch
  88. scripts/launch_files/velodyne_vlp16.launch
  89. scripts/launch_files/velodyne_vlp16_hires.launch
  90. scripts/launch_files/velodyne_vlp32c.launch
  91. scripts/mqtt_socket.launch
  92. scripts/points2image.launch
  93. scripts/setup_tf.launch
  94. scripts/setup_vehicle_info.launch
  95. scripts/synchronization.launch
  96. scripts/tablet_socket.launch
  97. scripts/traffic_light.launch
  98. scripts/uvc_camera.launch
  99. scripts/vehicle_socket.launch
  100. scripts/vscan.launch
  101. DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch_files
  102. )
  103. install(DIRECTORY launch/
  104. DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch
  105. )