20 lines
457 B
C++
20 lines
457 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
|
|
|
|
#ifdef _WIN32
|
|
#pragma comment(lib, "BugTrapU-x64.lib")
|
|
#pragma comment(lib, "shell32.lib")
|
|
#endif // _WIN32
|