pbsplash/src/nanosvg.c
Oliver Smith fc5f065269
nanosvg: build implementation in extra c file
Speed up development iterations by building the nanosvg implementation
only once. Especially on the PinePhone it takes a bit.
2022-08-06 18:45:22 +01:00

9 lines
257 B
C

/* Build the nanosvg implementation here, to build it only once and have other
* C files build fast during development. */
#include <stdio.h>
#define NANOSVG_IMPLEMENTATION
#include "nanosvg.h"
#define NANOSVGRAST_IMPLEMENTATION
#include "nanosvgrast.h"