[win32] fixing include directives to avoid having to pass all include dirs to compiler
This commit is contained in:
parent
debcffce2a
commit
6499bcd2a2
|
@ -9,8 +9,8 @@
|
|||
#ifndef __GRAPHICS_H_
|
||||
#define __GRAPHICS_H_
|
||||
|
||||
#include"typedefs.h"
|
||||
#include"platform.h"
|
||||
#include"util/typedefs.h"
|
||||
#include"platform/platform.h"
|
||||
#include"mp_app.h"
|
||||
|
||||
//------------------------------------------------------------------------------------------
|
||||
|
|
|
@ -12,22 +12,22 @@
|
|||
//----------------------------------------------------------------
|
||||
// utility layer
|
||||
//----------------------------------------------------------------
|
||||
#include"platform.h"
|
||||
#include"typedefs.h"
|
||||
#include"macro_helpers.h"
|
||||
#include"platform_log.h"
|
||||
#include"lists.h"
|
||||
#include"memory.h"
|
||||
#include"strings.h"
|
||||
#include"utf8.h"
|
||||
#include"hash.h"
|
||||
#include"platform/platform.h"
|
||||
#include"util/typedefs.h"
|
||||
#include"util/macro_helpers.h"
|
||||
#include"platform/platform_log.h"
|
||||
#include"util/lists.h"
|
||||
#include"util/memory.h"
|
||||
#include"util/strings.h"
|
||||
#include"util/utf8.h"
|
||||
#include"util/hash.h"
|
||||
|
||||
//----------------------------------------------------------------
|
||||
// platform layer
|
||||
//----------------------------------------------------------------
|
||||
#include"platform_clock.h"
|
||||
#include"platform_path.h"
|
||||
#include"platform_io.h"
|
||||
#include"platform/platform_clock.h"
|
||||
#include"platform/platform_path.h"
|
||||
#include"platform/platform_io.h"
|
||||
/*
|
||||
#include"platform_rng.h"
|
||||
#include"platform_socket.h"
|
||||
|
|
|
@ -9,10 +9,10 @@
|
|||
#ifndef __PLATFORM_APP_H_
|
||||
#define __PLATFORM_APP_H_
|
||||
|
||||
#include"typedefs.h"
|
||||
#include"utf8.h"
|
||||
#include"lists.h"
|
||||
#include"memory.h"
|
||||
#include"util/typedefs.h"
|
||||
#include"util/utf8.h"
|
||||
#include"util/lists.h"
|
||||
#include"util/memory.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#ifndef __PLATFORM_CLOCK_H_
|
||||
#define __PLATFORM_CLOCK_H_
|
||||
|
||||
#include"typedefs.h"
|
||||
#include"util/typedefs.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#define __PLATFORM_LOG_H_
|
||||
|
||||
#include"platform.h"
|
||||
#include"strings.h"
|
||||
#include"util/strings.h"
|
||||
|
||||
typedef enum { LOG_LEVEL_ERROR,
|
||||
LOG_LEVEL_WARNING,
|
||||
|
|
Loading…
Reference in New Issue