Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathheader_builds.cpp
More file actions
Latest commit
42 lines (29 loc) · 1.25 KB
/
Copy pathheader_builds.cpp
File metadata and controls
42 lines (29 loc) · 1.25 KB
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
//####################################################################################
#defineSTB_IMAGE_IMPLEMENTATION
#include"3rd_party/stb/stb_image.h"
#defineSTB_IMAGE_RESIZE_IMPLEMENTATION
#include"3rd_party/stb/stb_image_resize.h"
#defineSTB_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
#defineFONTSTASH_IMPLEMENTATION// Expands implementation
#include"3rd_party/fontstash/fontstash.h"
///#include <GLFW/glfw3.h> // Or any other GL header of your choice.
#include<QOpenGLWidget>
#defineGLFONTSTASH_IMPLEMENTATION// Expands implementation
#include"3rd_party/fontstash/glfontstash.h"
#endif