mirror of
https://git.sr.ht/~calebccff/pbsplash
synced 2026-01-12 20:48:40 -09:00
Speed up development iterations by building the nanosvg implementation only once. Especially on the PinePhone it takes a bit.
9 lines
257 B
C
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"
|