Improve overflow handling / CLAY_MAX_ELEMENT_COUNT exceeded (#52)

This commit is contained in:
Nic Barker 2024-12-01 21:05:56 +13:00 committed by GitHub
parent 51c5355686
commit b8725bfb65
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 167 additions and 96 deletions

View file

@ -4,11 +4,11 @@ set(CMAKE_C_STANDARD 99)
add_executable(clay_examples_cairo_pdf_rendering main.c)
target_compile_options(clay_examples_cairo_pdf_rendering PUBLIC -DCLAY_DEBUG -DCLAY_OVERFLOW_TRAP -Wall -Werror -Wno-unknown-pragmas -g3 -O0)
target_compile_options(clay_examples_cairo_pdf_rendering PUBLIC)
target_include_directories(clay_examples_cairo_pdf_rendering PUBLIC .)
target_link_libraries(clay_examples_cairo_pdf_rendering PUBLIC cairo)
set(CMAKE_CXX_FLAGS_DEBUG "-Wall")
set(CMAKE_CXX_FLAGS_DEBUG "-Wall -Werror")
set(CMAKE_CXX_FLAGS_RELEASE "-O3")
add_custom_command(