Skip to content

Commit

Permalink
bump cmake version to get rid of build-time warning
Browse files Browse the repository at this point in the history
about VERSION being managed by project() since 3.0
Keep the version consistent with other packages in ROS that
applied similar fixes, e.g.,
ros/catkin#1052
  • Loading branch information
v4hn committed Mar 6, 2023
1 parent cc6a9c6 commit 4435d59
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 15 deletions.
3 changes: 1 addition & 2 deletions imu_monitor/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# http://ros.org/doc/groovy/api/catkin/html/user_guide/supposed.html
cmake_minimum_required(VERSION 2.8.3)
cmake_minimum_required(VERSION 3.0.2)
project(imu_monitor)

find_package(catkin REQUIRED)
Expand Down
3 changes: 1 addition & 2 deletions pr2_bringup/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# http://ros.org/doc/groovy/api/catkin/html/user_guide/supposed.html
cmake_minimum_required(VERSION 2.8.3)
cmake_minimum_required(VERSION 3.0.2)
project(pr2_bringup)

# Load catkin and all dependencies required for this package
Expand Down
3 changes: 1 addition & 2 deletions pr2_camera_synchronizer/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# http://ros.org/doc/groovy/api/catkin/html/user_guide/supposed.html
cmake_minimum_required(VERSION 2.8.3)
cmake_minimum_required(VERSION 3.0.2)
project(pr2_camera_synchronizer)

# Load catkin and all dependencies required for this package
Expand Down
3 changes: 1 addition & 2 deletions pr2_computer_monitor/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# http://ros.org/doc/groovy/api/catkin/html/user_guide/supposed.html
cmake_minimum_required(VERSION 2.8.3)
cmake_minimum_required(VERSION 3.0.2)
project(pr2_computer_monitor)
# Load catkin and all dependencies required for this package
# TODO: remove all from COMPONENTS that are not catkin packages.
Expand Down
3 changes: 1 addition & 2 deletions pr2_controller_configuration/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# http://ros.org/doc/groovy/api/catkin/html/user_guide/supposed.html
cmake_minimum_required(VERSION 2.8.3)
cmake_minimum_required(VERSION 3.0.2)
project(pr2_controller_configuration)

# Load catkin and all dependencies required for this package
Expand Down
3 changes: 1 addition & 2 deletions pr2_ethercat/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# http://ros.org/doc/groovy/api/catkin/html/user_guide/supposed.html
cmake_minimum_required(VERSION 2.8.3)
cmake_minimum_required(VERSION 3.0.2)
project(pr2_ethercat)

# Load catkin and all dependencies required for this package
Expand Down
2 changes: 1 addition & 1 deletion pr2_robot/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 2.8.3)
cmake_minimum_required(VERSION 3.0.2)
project(pr2_robot)
find_package(catkin REQUIRED)
catkin_metapackage()
3 changes: 1 addition & 2 deletions pr2_run_stop_auto_restart/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# http://ros.org/doc/groovy/api/catkin/html/user_guide/supposed.html
cmake_minimum_required(VERSION 2.8.3)
cmake_minimum_required(VERSION 3.0.2)
project(pr2_run_stop_auto_restart)

# Load catkin and all dependencies required for this package
Expand Down

0 comments on commit 4435d59

Please sign in to comment.