mirror of
https://github.com/nicbarker/clay.git
synced 2025-01-24 02:16:03 +00:00
19 lines
676 B
CMake
19 lines
676 B
CMake
cmake_minimum_required(VERSION 3.27)
|
|
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)
|
|
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 -Werror")
|
|
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)
|