19 lines
413 B
C++
19 lines
413 B
C++
// This source file compiles those annoying implementation-in-header libraries
|
|
|
|
#include <common.hpp> // for fopen_u8
|
|
|
|
#define GLEW_STATIC
|
|
#define GLEW_NO_GLU
|
|
#include <GL/glew.h>
|
|
|
|
#include <nanovg.h>
|
|
|
|
#define BLENDISH_IMPLEMENTATION
|
|
#include <blendish.h>
|
|
|
|
#define NANOSVG_IMPLEMENTATION
|
|
#define NANOSVG_ALL_COLOR_KEYWORDS
|
|
#include <nanosvg.h>
|
|
|
|
#define STB_IMAGE_WRITE_IMPLEMENTATION
|
|
#include <stb_image_write.h>
|