mirror of
https://github.com/nicbarker/clay.git
synced 2025-04-03 21:08:04 +00:00
Some checks failed
CMake on multiple platforms / build (Release, cl, cl, windows-latest) (push) Has been cancelled
CMake on multiple platforms / build (Release, clang, clang++, ubuntu-latest) (push) Has been cancelled
CMake on multiple platforms / build (Release, gcc, g++, ubuntu-latest) (push) Has been cancelled
23 lines
835 B
CMake
23 lines
835 B
CMake
cmake_minimum_required(VERSION 3.27)
|
|
project(clay_examples_cairo_pdf_rendering C)
|
|
set(CMAKE_C_STANDARD 99)
|
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../../cmake")
|
|
|
|
add_executable(clay_examples_cairo_pdf_rendering main.c)
|
|
|
|
find_package(Cairo REQUIRED)
|
|
|
|
target_compile_options(clay_examples_cairo_pdf_rendering PUBLIC)
|
|
target_include_directories(clay_examples_cairo_pdf_rendering PUBLIC . ${CAIRO_INCLUDE_DIRS})
|
|
|
|
target_link_libraries(clay_examples_cairo_pdf_rendering PUBLIC Cairo::Cairo)
|
|
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG}")
|
|
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE}")
|
|
|
|
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)
|