Include new cairo renderer (#48)

This commit is contained in:
Justin 2024-11-19 05:03:39 +01:00 committed by GitHub
parent c5a1c1a4ed
commit 330e56a858
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 566 additions and 3 deletions

View file

@ -0,0 +1,18 @@
cmake_minimum_required(VERSION 3.28)
project(clay_examples_cairo_pdf_rendering C)
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_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_RELEASE "-O3")
add_custom_command(
TARGET clay_examples_cairo_pdf_rendering POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_directory
${CMAKE_CURRENT_SOURCE_DIR}/resources
${CMAKE_CURRENT_BINARY_DIR}/resources)