Clarified the use of bundled include files.

This commit is contained in:
Leon Styhre 2021-10-06 18:41:21 +02:00
parent af2497a5de
commit 08888e00af
5 changed files with 15 additions and 10 deletions

View file

@ -23,11 +23,12 @@
#include "utils/StringUtil.h"
#include "utils/TimeUtil.h"
#include "rapidjson/document.h"
#include "rapidjson/error/en.h"
#include <exception>
#include <map>
#include <pugixml.hpp>
#include <rapidjson/document.h>
#include <rapidjson/error/en.h>
using namespace PlatformIds;
using namespace rapidjson;

View file

@ -21,11 +21,12 @@
#include "Log.h"
#include "utils/FileSystemUtil.h"
#include "rapidjson/document.h"
#include "rapidjson/error/en.h"
#include <chrono>
#include <fstream>
#include <memory>
#include <rapidjson/document.h>
#include <rapidjson/error/en.h>
#include <thread>
using namespace rapidjson;

View file

@ -16,8 +16,9 @@
#include "renderers/Renderer.h"
#include "resources/ResourceManager.h"
#include <nanosvg.h>
#include <nanosvgrast.h>
#include "nanosvg.h"
#include "nanosvgrast.h"
#include <string.h>
#define DPI 96

View file

@ -12,7 +12,8 @@
// Disable the CImg display capabilities.
#define cimg_display 0
#include <CImg.h>
#include "CImg.h"
#include <vector>
namespace Utils

View file

@ -10,9 +10,10 @@
#ifndef ES_CORE_UTILS_MATH_UTIL_H
#define ES_CORE_UTILS_MATH_UTIL_H
#include <glm/ext/matrix_clip_space.hpp>
#include <glm/ext/matrix_transform.hpp>
#include <glm/trigonometric.hpp>
#include "glm/ext/matrix_clip_space.hpp"
#include "glm/ext/matrix_transform.hpp"
#include "glm/trigonometric.hpp"
#include <string>
namespace Utils