Skip to content
Snippets Groups Projects
Commit c43a9320 authored by Christoph Pohl's avatar Christoph Pohl
Browse files

Merge branch 'chore/ubuntu-24-upgrade' into 'master'

Fix array-bounds compile errors under Gcc13

See merge request !50
......@@ -21,4 +21,5 @@ set(COMPONENT_LIBS ArmarXGuiBase
if (ArmarXGui_FOUND)
armarx_gui_library(WorkingMemoryGuiPlugin "${SOURCES}" "${GUI_MOC_HDRS}" "${GUI_UIS}" "" "${COMPONENT_LIBS}" )
target_compile_options("WorkingMemoryGuiPlugin" PRIVATE -Wno-error=array-bounds)
endif()
......@@ -9,4 +9,5 @@ set(LIB_FILES kbm.cpp pls.cpp inverse.cpp)
set(LIB_HEADERS kbm.h)
armarx_add_library("${LIB_NAME}" "${LIB_FILES}" "${LIB_HEADERS}" "${LIBS}" )
target_compile_options("${LIB_NAME}" PRIVATE -Wno-error=array-bounds)
......@@ -21,3 +21,4 @@ set(LIB_HEADERS
)
armarx_add_library("${LIB_NAME}" "${LIB_FILES}" "${LIB_HEADERS}" "${LIBS}")
target_compile_options("${LIB_NAME}" PRIVATE -Wno-error=array-bounds)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment