We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63172fa commit fc3b9deCopy full SHA for fc3b9de
robotiq_hande_driver/CMakeLists.txt
@@ -2,13 +2,14 @@ cmake_minimum_required(VERSION 3.16)
2
project(robotiq_hande_driver)
3
4
if(CMAKE_CXX_COMPILER_ID MATCHES "(GNU|Clang)")
5
- # Flag `-Wno-deprecated-copy` is related to the ROS Humble's bundled gmock version.
+ # 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`
8
add_compile_options(
9
-Wall
10
-Wextra
11
-Wpedantic
- -Werror
- -Wno-deprecated-copy)
12
+ -Werror)
13
endif()
14
15
include(FindPkgConfig)
0 commit comments