From edc2d7912e5599915b310abe112f4d93ef4c4ce3 Mon Sep 17 00:00:00 2001
From: bonk256 <nsfalex@nsfalex.com>
Date: Sat, 22 Mar 2025 15:18:18 +0100
Subject: [PATCH] Add interface target to be used with Meson's CMake module

---
 CMakeLists.txt | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index ecb29d7..215b813 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -38,3 +38,6 @@ if(NOT MSVC AND (CLAY_INCLUDE_ALL_EXAMPLES OR CLAY_INCLUDE_SDL3_EXAMPLES))
 endif()
 
 #  add_subdirectory("examples/cairo-pdf-rendering") Some issue with github actions populating cairo, disable for now
+
+add_library(headers INTERFACE)
+target_include_directories(headers INTERFACE .)