aboutsummaryrefslogtreecommitdiffstats
path: root/src/gos/gos.h
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2015-11-21 19:27:08 +1000
committerinmarket <andrewh@inmarket.com.au>2015-11-21 19:27:08 +1000
commitc5a86757bd8309027d50f82d8947250c8e1197e6 (patch)
treef37f1a93fea959e870833022479603cd92702ea4 /src/gos/gos.h
parenta69849177d6e7d396ea36a8160428e327811729b (diff)
downloaduGFX-c5a86757bd8309027d50f82d8947250c8e1197e6.tar.gz
uGFX-c5a86757bd8309027d50f82d8947250c8e1197e6.tar.bz2
uGFX-c5a86757bd8309027d50f82d8947250c8e1197e6.zip
Make all include paths in ugfx relative.
The only include path now needed is for drivers (in particular GDISP drivers)
Diffstat (limited to 'src/gos/gos.h')
-rw-r--r--src/gos/gos.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/gos/gos.h b/src/gos/gos.h
index 4463740d..445e4b3a 100644
--- a/src/gos/gos.h
+++ b/src/gos/gos.h
@@ -457,27 +457,27 @@
* (without any of the documentation overheads) is in the files below.
*/
#elif GFX_USE_OS_RAWRTOS
- #include "src/gos/gos_rawrtos.h"
+ #include "gos_rawrtos.h"
#elif GFX_USE_OS_CHIBIOS
- #include "src/gos/gos_chibios.h"
+ #include "gos_chibios.h"
#elif GFX_USE_OS_FREERTOS
- #include "src/gos/gos_freertos.h"
+ #include "gos_freertos.h"
#elif GFX_USE_OS_WIN32
- #include "src/gos/gos_win32.h"
+ #include "gos_win32.h"
#elif GFX_USE_OS_LINUX
- #include "src/gos/gos_linux.h"
+ #include "gos_linux.h"
#elif GFX_USE_OS_OSX
- #include "src/gos/gos_osx.h"
+ #include "gos_osx.h"
#elif GFX_USE_OS_RAW32
- #include "src/gos/gos_raw32.h"
+ #include "gos_raw32.h"
#elif GFX_USE_OS_ECOS
- #include "src/gos/gos_ecos.h"
+ #include "gos_ecos.h"
#elif GFX_USE_OS_ARDUINO
- #include "src/gos/gos_arduino.h"
+ #include "gos_arduino.h"
#elif GFX_USE_OS_CMSIS
- #include "src/gos/gos_cmsis.h"
+ #include "gos_cmsis.h"
#elif GFX_USE_OS_KEIL
- #include "src/gos/gos_keil.h"
+ #include "gos_keil.h"
#else
#error "Your operating system is not supported yet"
#endif