aboutsummaryrefslogtreecommitdiffstats
path: root/include/gos/options.h
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2014-02-19 08:00:52 +1000
committerinmarket <andrewh@inmarket.com.au>2014-02-19 08:00:52 +1000
commitb82448c3e23663a25a423402343fbca78253b80c (patch)
tree57a03e35b88f6e434b6c4d084695fc5ce1061932 /include/gos/options.h
parentdcedf414136e55e6dacbe736babe748e1374e19e (diff)
parent37966ff16d923bbca53c9464815cb49cbd7fc3be (diff)
downloaduGFX-b82448c3e23663a25a423402343fbca78253b80c.tar.gz
uGFX-b82448c3e23663a25a423402343fbca78253b80c.tar.bz2
uGFX-b82448c3e23663a25a423402343fbca78253b80c.zip
Merge branch 'master' into gwin
Diffstat (limited to 'include/gos/options.h')
-rw-r--r--include/gos/options.h67
1 files changed, 0 insertions, 67 deletions
diff --git a/include/gos/options.h b/include/gos/options.h
deleted file mode 100644
index 4edb35d8..00000000
--- a/include/gos/options.h
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * This file is subject to the terms of the GFX License. If a copy of
- * the license was not distributed with this file, you can obtain one at:
- *
- * http://ugfx.org/license.html
- */
-
-/**
- * @file include/gos/options.h
- * @brief GOS - Operating System options header file.
- *
- * @addtogroup GOS
- * @{
- */
-
-#ifndef _GOS_OPTIONS_H
-#define _GOS_OPTIONS_H
-
-/**
- * @name GOS The operating system to use. One (and only one) of these must be defined.
- * @{
- */
- /**
- * @brief Use ChibiOS
- * @details Defaults to FALSE
- */
- #ifndef GFX_USE_OS_CHIBIOS
- #define GFX_USE_OS_CHIBIOS FALSE
- #endif
- /**
- * @brief Use Win32
- * @details Defaults to FALSE
- */
- #ifndef GFX_USE_OS_WIN32
- #define GFX_USE_OS_WIN32 FALSE
- #endif
- /**
- * @brief Use a linux based system running X11
- * @details Defaults to FALSE
- */
- #ifndef GFX_USE_OS_LINUX
- #define GFX_USE_OS_LINUX FALSE
- #endif
- /**
- * @brief Use a Mac OS-X based system
- * @details Defaults to FALSE
- */
- #ifndef GFX_USE_OS_OSX
- #define GFX_USE_OS_OSX FALSE
- #endif
- /**
- * @brief Use a Raw 32 bit CPU based system
- * @details Defaults to FALSE
- */
- #ifndef GFX_USE_OS_RAW32
- #define GFX_USE_OS_RAW32 FALSE
- #endif
-/**
- * @}
- *
- * @name GOS Optional Sizing Parameters
- * @{
- */
-/** @} */
-
-#endif /* _GOS_OPTIONS_H */
-/** @} */