16 lines
341 B
C++
16 lines
341 B
C++
#include "pch.h"
|
|
|
|
#define STB_TRUETYPE_IMPLEMENTATION
|
|
#define STB_IMAGE_IMPLEMENTATION
|
|
#define STB_IMAGE_WRITE_IMPLEMENTATION
|
|
#include <stb/stb_truetype.h>
|
|
#include <stb/stb_image.h>
|
|
#include <stb/stb_image_write.h>
|
|
|
|
#ifdef DEBUG
|
|
#pragma comment (lib, "libcurl_debug.lib")
|
|
#else
|
|
#pragma comment (lib, "libcurl.lib")
|
|
#endif // DEBUG
|
|
|