Skip to content

Commit

Permalink
drop explicit requests for c++11
Browse files Browse the repository at this point in the history
C++11 has been the default for compilers targeted in this branch.
gtest requires c++14 since v1.13 (Jan 2023) and building the tests on newer systems fails.
  • Loading branch information
v4hn committed Feb 2, 2024
1 parent 2b7ef65 commit bd45f15
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
3 changes: 0 additions & 3 deletions industrial_robot_client/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ cmake_minimum_required(VERSION 3.0.2)

project(industrial_robot_client)

set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

find_package(catkin REQUIRED COMPONENTS actionlib actionlib_msgs
control_msgs industrial_msgs industrial_utils roscpp sensor_msgs
simple_message std_msgs trajectory_msgs urdf)
Expand Down
2 changes: 0 additions & 2 deletions industrial_trajectory_filters/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ cmake_minimum_required(VERSION 3.0.2)

project(industrial_trajectory_filters)

add_compile_options(-std=c++11)

find_package(catkin REQUIRED COMPONENTS
class_loader
moveit_core
Expand Down
3 changes: 0 additions & 3 deletions simple_message/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ cmake_minimum_required(VERSION 3.0.2)

project(simple_message)

set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

find_package(catkin REQUIRED COMPONENTS industrial_msgs roscpp)

# The simple message make file builds three libraries: simple_message,
Expand Down

0 comments on commit bd45f15

Please sign in to comment.