mirror of
https://github.com/lubosz/overte.git
synced 2025-04-10 04:28:59 +02:00
WIP: trying to fix windows not finding framework
This commit is contained in:
parent
a01a4f929f
commit
25e75bcc79
3 changed files with 4 additions and 5 deletions
|
@ -28,9 +28,8 @@ if (APPLE)
|
|||
else ()
|
||||
message(STATUS "Could NOT find 3DConnexionClient")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if (WIN32)
|
||||
elseif (WIN32)
|
||||
message(STATUS ${CONNEXIONCLIENT_SEARCH_DIRS})
|
||||
find_path(3DCONNEXIONCLIENT_INCLUDE_DIRS I3dMouseParams.h PATH_SUFFIXES Inc HINTS ${CONNEXIONCLIENT_SEARCH_DIRS})
|
||||
|
||||
include(FindPackageHandleStandardArgs)
|
||||
|
|
|
@ -158,7 +158,7 @@ ConnexionClient& ConnexionClient::getInstance() {
|
|||
|
||||
#ifdef HAVE_3DCONNEXIONCLIENT
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifdef Q_OS_WIN
|
||||
|
||||
static ConnexionClient* gMouseInput = 0;
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ public slots:
|
|||
|
||||
#ifdef HAVE_3DCONNEXIONCLIENT
|
||||
// the windows connexion rawinput
|
||||
#ifdef _WIN32
|
||||
#ifdef Q_OS_WIN
|
||||
|
||||
#include "I3dMouseParams.h"
|
||||
#include <QAbstractNativeEventFilter>
|
||||
|
|
Loading…
Reference in a new issue