fixed include directives to avoid having to pass to much include paths in usage scripts

This commit is contained in:
martinfouilleul 2023-06-19 16:16:54 +02:00
parent d2c4acf6e2
commit 2fe683b79d
6 changed files with 2241 additions and 2241 deletions

View File

@ -7,8 +7,8 @@
*
*****************************************************************/
#include"platform.h"
#include"platform_math.h"
#include"platform/platform.h"
#include"platform/platform_math.h"
#if !PLATFORM_ORCA
#define STB_IMAGE_IMPLEMENTATION
@ -18,8 +18,8 @@
#include"stb_truetype.h"
#endif
#include"platform_log.h"
#include"platform_assert.h"
#include"platform/platform_log.h"
#include"platform/platform_assert.h"
#include"graphics_common.h"
typedef struct mg_glyph_map_entry

View File

@ -9,7 +9,7 @@
#ifndef __PLATFORM_MEMORY_H_
#define __PLATFORM_MEMORY_H_
#include"typedefs.h"
#include"util/typedefs.h"
#include"platform.h"
#ifdef __cplusplus

View File

@ -9,8 +9,8 @@
#ifndef __CONTAINERS_H_
#define __CONTAINERS_H_
#include"macro_helpers.h"
#include"platform_assert.h"
#include"util/macro_helpers.h"
#include"platform/platform_assert.h"
#ifdef __cplusplus
extern "C" {

View File

@ -6,9 +6,9 @@
* @revision:
*
*****************************************************************/
#include"platform.h"
#include"platform/platform.h"
#include"memory.h"
#include"platform_memory.h"
#include"platform/platform_memory.h"
#include"macro_helpers.h"
#if PLATFORM_ORCA

View File

@ -6,7 +6,7 @@
* @revision:
*
*****************************************************************/
#include"platform_assert.h"
#include"platform/platform_assert.h"
#include"strings.h"
//----------------------------------------------------------------------------------

View File

@ -12,8 +12,8 @@
#include"typedefs.h"
#include"lists.h"
#include"memory.h"
#include"platform_strings.h"
#include"platform_varg.h"
#include"platform/platform_strings.h"
#include"platform/platform_varg.h"
#ifdef __cplusplus
extern "C" {