Skip to content

Commit

Permalink
fixed compilation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mhubii committed Oct 22, 2024
1 parent dbefde2 commit 8298a4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ endif()

if(CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang")
# Disable specific warnings (we cannot change these, KUKA has to fix them in their SDK)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-format-security -Wno-parentheses")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-format-security -Wno-parentheses")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-format-security")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-format-security")
endif()

######################
Expand Down

0 comments on commit 8298a4b

Please sign in to comment.