forked from carla-simulator/ros-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
56 lines (44 loc) · 947 Bytes
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
cmake_minimum_required(VERSION 2.8.3)
project(carla_ros_bridge)
## Find catkin macros and libraries
find_package(catkin REQUIRED COMPONENTS
rospy
sensor_msgs
tf
dynamic_reconfigure
)
catkin_python_setup()
add_message_files(
FILES
CarlaVehicleControl.msg
EgoVehicleControlCurrent.msg
EgoVehicleControlInfo.msg
EgoVehicleControlMaxima.msg
EgoVehicleControlState.msg
EgoVehicleControlTarget.msg
)
generate_messages(
DEPENDENCIES
std_msgs
)
generate_dynamic_reconfigure_options(
config/EgoVehicleControlParameter.cfg
)
catkin_package()
include_directories(
${catkin_INCLUDE_DIRS}
)
install(PROGRAMS
src/carla_ros_bridge/client.py
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)
install(FILES
client.launch
client_with_rviz.launch
test/ros_bridge_client.test
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)
install(DIRECTORY
config
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)