-
Notifications
You must be signed in to change notification settings - Fork 2
/
header_builds.cpp
42 lines (29 loc) · 1.25 KB
/
header_builds.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
// Created by Stephens Nunnally on 12/18/2019, (c) 2019 Scidian Studios, All Rights Reserved
//
// File:
// For building header only libraries
//
//
//####################################################################################
//## STB Libraries
//####################################################################################
#define STB_IMAGE_IMPLEMENTATION
#include "3rd_party/stb/stb_image.h"
#define STB_IMAGE_RESIZE_IMPLEMENTATION
#include "3rd_party/stb/stb_image_resize.h"
#define STB_IMAGE_WRITE_IMPLEMENTATION
#include "3rd_party/stb/stb_image_write.h"
//####################################################################################
//## Font Stash
//####################################################################################
#if !defined(Q_OS_IOS)
#include <stdio.h> // malloc, free, fopen, fclose, ftell, fseek, fread
#include <string.h> // memset
#define FONTSTASH_IMPLEMENTATION // Expands implementation
#include "3rd_party/fontstash/fontstash.h"
///#include <GLFW/glfw3.h> // Or any other GL header of your choice.
#include <QOpenGLWidget>
#define GLFONTSTASH_IMPLEMENTATION // Expands implementation
#include "3rd_party/fontstash/glfontstash.h"
#endif