fixed include directives to avoid having to pass to much include paths in usage scripts
This commit is contained in:
parent
d2c4acf6e2
commit
2fe683b79d
|
@ -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
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#ifndef __PLATFORM_MEMORY_H_
|
||||
#define __PLATFORM_MEMORY_H_
|
||||
|
||||
#include"typedefs.h"
|
||||
#include"util/typedefs.h"
|
||||
#include"platform.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
@ -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" {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* @revision:
|
||||
*
|
||||
*****************************************************************/
|
||||
#include"platform_assert.h"
|
||||
#include"platform/platform_assert.h"
|
||||
#include"strings.h"
|
||||
|
||||
//----------------------------------------------------------------------------------
|
||||
|
|
|
@ -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" {
|
||||
|
|
Loading…
Reference in New Issue