Skip to content

Commit

Permalink
Merge pull request #88 from carla-simulator/feature/add_missing_cmake…
Browse files Browse the repository at this point in the history
…lists

Add missing cmakelists
  • Loading branch information
fabianoboril authored Apr 3, 2019
2 parents 29fff49 + e8682db commit b88815a
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*.pyc
build.gradle
CMakeLists.txt
/CMakeLists.txt
.catkin_workspace
24 changes: 24 additions & 0 deletions carla_ego_vehicle/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
cmake_minimum_required(VERSION 2.8.3)
project(carla_ego_vehicle)

find_package(catkin REQUIRED COMPONENTS
rospy
)

catkin_python_setup()

catkin_package(
CATKIN_DEPENDS
rospy
)

catkin_install_python(PROGRAMS
src/carla_ego_vehicle/carla_example_ego_vehicle.py
src/carla_ego_vehicle/carla_ego_vehicle_base.py
src/carla_ego_vehicle/carla_ros_manual_control.py
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)

install(DIRECTORY launch/
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch
)
22 changes: 22 additions & 0 deletions carla_waypoint_publisher/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
cmake_minimum_required(VERSION 2.8.3)
project(carla_waypoint_publisher)

find_package(catkin REQUIRED COMPONENTS
rospy
)

catkin_python_setup()

catkin_package(
CATKIN_DEPENDS
rospy
)

catkin_install_python(PROGRAMS
src/carla_waypoint_publisher/carla_waypoint_publisher.py
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)

install(DIRECTORY launch/
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch
)

0 comments on commit b88815a

Please sign in to comment.