rename engine to src
This commit is contained in:
19
src/pch.cpp
Normal file
19
src/pch.cpp
Normal file
@@ -0,0 +1,19 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user