summaryrefslogtreecommitdiff
path: root/indra/llimage
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2023-12-23 19:38:43 +0800
committerErik Kundiman <erik@megapahit.org>2023-12-23 19:38:43 +0800
commita0e9136f1466372cd70bb2749346b2d4392b607f (patch)
treecefe2e3f42cbbcf81b73f6700eca411ded7bd227 /indra/llimage
parent8a6848131d471733bda4bde319850b93afd12327 (diff)
no-stringop-overflow for getting it built on jammy
Diffstat (limited to 'indra/llimage')
-rw-r--r--indra/llimage/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llimage/CMakeLists.txt b/indra/llimage/CMakeLists.txt
index a6c98d9bd7..f55d9fdf5e 100644
--- a/indra/llimage/CMakeLists.txt
+++ b/indra/llimage/CMakeLists.txt
@@ -70,6 +70,10 @@ target_link_libraries(llimage
if (NOT (USE_AUTOBUILD_3P OR USE_CONAN))
if (CMAKE_CXX_COMPILER_ID MATCHES "GNU")
set_source_files_properties(llimageworker.cpp PROPERTIES COMPILE_FLAGS -Wno-int-in-bool-context)
+ set_source_files_properties(
+ llimage.cpp
+ llimagefilter.cpp
+ PROPERTIES COMPILE_FLAGS -Wno-stringop-overflow)
endif()
endif ()