Skip to content

Commit fc3b9de

Browse files
committed
updated comments in CMakelists
1 parent 63172fa commit fc3b9de

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

robotiq_hande_driver/CMakeLists.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@ cmake_minimum_required(VERSION 3.16)
22
project(robotiq_hande_driver)
33

44
if(CMAKE_CXX_COMPILER_ID MATCHES "(GNU|Clang)")
5-
# Flag `-Wno-deprecated-copy` is related to the ROS Humble's bundled gmock version.
5+
# If you got problems with ROS Humble's bundled gmock version:
6+
# a) change the compiler to clang >= 14.0.0
7+
# b) add flag `-Wno-deprecated-copy`
68
add_compile_options(
79
-Wall
810
-Wextra
911
-Wpedantic
10-
-Werror
11-
-Wno-deprecated-copy)
12+
-Werror)
1213
endif()
1314

1415
include(FindPkgConfig)

0 commit comments

Comments
 (0)