1
0
Fork 0

Merge branch '4-linux-support' into dev

This commit is contained in:
Henrik Hautakoski 2020-12-28 18:43:22 +01:00
commit 0e2a3525e4
36 changed files with 2754 additions and 34 deletions

View file

@ -1,9 +1,12 @@
#include <Spectre/System/MessageQueue.h>
#ifdef _WIN32
#ifdef SPECTRE_PLATFORM_WIN
#include <Platform/Win32/Win32EventQueue.h>
typedef sp::Win32EventQueue ImplType;
#elif SPECTRE_PLATFORM_UNIX
#include <Platform/Unix/X11EventQueue.h>
typedef sp::X11EventQueue ImplType;
#else
#error "No MessageQueue implementation exists"
#endif