Fix Windows and OSX includes

This commit is contained in:
Roland Winklmeier
2015-11-22 16:45:12 +01:00
parent 9f0834b748
commit 2ff0c9fa86
5 changed files with 8 additions and 7 deletions

View File

@@ -10,7 +10,7 @@
#include "windowfinder.h" #include "windowfinder.h"
#if defined(Q_OS_WIN) #if defined(Q_OS_WIN)
#include "win/windowfinder_win.h" #include "win/windowfinderwindows.h"
#elif defined(Q_OS_LINUX) #elif defined(Q_OS_LINUX)
#elif defined(Q_OS_OSX) #elif defined(Q_OS_OSX)
#else #else

View File

@@ -10,11 +10,11 @@
#include "joystick.h" #include "joystick.h"
#if defined(Q_OS_WIN) #if defined(Q_OS_WIN)
#include "win/joystick_windows.h" #include "win/joystickwindows.h"
#elif defined(Q_OS_LINUX) #elif defined(Q_OS_LINUX)
#include "linux/joysticklinux.h" #include "linux/joysticklinux.h"
#elif defined(Q_OS_OSX) #elif defined(Q_OS_OSX)
#include "osx/joystick_mac.h" #include "osx/joystickmac.h"
#else #else
#error "Platform is not supported!" #error "Platform is not supported!"
#endif #endif

View File

@@ -6,11 +6,11 @@
#include "keyboard.h" #include "keyboard.h"
#if defined(Q_OS_WIN) #if defined(Q_OS_WIN)
#include "win/keyboard_windows.h" #include "win/keyboardwindows.h"
#elif defined(Q_OS_LINUX) #elif defined(Q_OS_LINUX)
#include "linux/keyboardlinux.h" #include "linux/keyboardlinux.h"
#elif defined(Q_OS_OSX) #elif defined(Q_OS_OSX)
#include "osx/keyboard_mac.h" #include "osx/keyboardmac.h"
#else #else
#error "Platform is not supported!" #error "Platform is not supported!"
#endif #endif

View File

@@ -8,8 +8,8 @@
*/ */
#include "registermetadata.h" #include "registermetadata.h"
#include "fs9_host.h" #include "fs9host.h"
#include "fs9_client.h" #include "fs9client.h"
namespace BlackSimPlugin namespace BlackSimPlugin
{ {

View File

@@ -14,6 +14,7 @@
#include "fs9client.h" #include "fs9client.h"
#include "multiplayerpackets.h" #include "multiplayerpackets.h"
#include "multiplayerpacketparser.h" #include "multiplayerpacketparser.h"
#include "registermetadata.h"
#include "blackcore/interpolatorlinear.h" #include "blackcore/interpolatorlinear.h"
#include "blackmisc/simulation/simulatorplugininfo.h" #include "blackmisc/simulation/simulatorplugininfo.h"
#include "blackmisc/logmessage.h" #include "blackmisc/logmessage.h"