diff options
author | Daniel Eklöf <daniel@ekloef.se> | 2024-07-18 18:21:11 +0200 |
---|---|---|
committer | Daniel Eklöf <daniel@ekloef.se> | 2024-07-18 18:21:43 +0200 |
commit | d91789cf42d88852709bfc62fab5f242a36fdf84 (patch) | |
tree | 6365fc20514ccda860ea7a64382f7876772ddb14 /nanosvg | |
parent | c89bbfe6012275afe500c0c862329f37c4021d73 (diff) | |
download | wbg-d91789cf42d88852709bfc62fab5f242a36fdf84.tar.gz |
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.
Diffstat (limited to 'nanosvg')
-rw-r--r-- | nanosvg/nanosvg.h | 1 | ||||
-rw-r--r-- | nanosvg/nanosvgrast.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/nanosvg/nanosvg.h b/nanosvg/nanosvg.h new file mode 100644 index 0000000..5c08f32 --- /dev/null +++ b/nanosvg/nanosvg.h @@ -0,0 +1 @@ +#include <3rd-party/nanosvg/src/nanosvg.h> diff --git a/nanosvg/nanosvgrast.h b/nanosvg/nanosvgrast.h new file mode 100644 index 0000000..c6b63dd --- /dev/null +++ b/nanosvg/nanosvgrast.h @@ -0,0 +1 @@ +#include <3rd-party/nanosvg/src/nanosvgrast.h> |