OpenBSD support for ANT sticks

.. just sets up another o/s version
This commit is contained in:
Claus Assmann
2013-03-16 14:27:51 +00:00
committed by Mark Liversedge
parent b1feef1c6c
commit 2ae55153a2
2 changed files with 3 additions and 0 deletions

View File

@@ -9,6 +9,8 @@ int OperatingSystem = OSX;
int OperatingSystem = WINDOWS;
#elif defined Q_OS_LINUX
int OperatingSystem = LINUX;
#elif defined Q_OS_OPENBSD
int OperatingSystem = OPENBSD;
#endif
static GSettings *GetApplicationSettings()

View File

@@ -217,5 +217,6 @@ extern int OperatingSystem;
#define WINDOWS 1
#define LINUX 2
#define OSX 3
#define OPENBSD 4
#endif // _GC_Settings_h