From d91789cf42d88852709bfc62fab5f242a36fdf84 Mon Sep 17 00:00:00 2001 From: Daniel Eklöf Date: Thu, 18 Jul 2024 18:21:11 +0200 Subject: meson/nanosvg: add support for linking against system's nanosvg Nanosvg upstream is header only, and does not support/provide a library, neither shared nor static. However, most distributions still provide a nanosvg package with either a static library, or shared. Arch does the latter. So, let's support building against a system provided nanosvg library. The default is still to use bundled version, but this can be changed with -Dsystem-nanosvg=enabled when configuring the build tree. --- nanosvg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nanosvg.c') diff --git a/nanosvg.c b/nanosvg.c index 5a77f2b..e95d869 100644 --- a/nanosvg.c +++ b/nanosvg.c @@ -3,4 +3,4 @@ #include #define NANOSVG_ALL_COLOR_KEYWORDS #define NANOSVG_IMPLEMENTATION -#include +#include <3rd-party/nanosvg/src/nanosvg.h> -- cgit v1.2.3