More MSVC stuff

This commit is contained in:
Mark Watkins 2014-05-09 17:05:54 +10:00
parent 9a40b54f63
commit 79e889d0a6
4 changed files with 20 additions and 19 deletions

View File

@ -295,8 +295,9 @@ void gLineChart::paint(QPainter &painter, gGraph &w, int left, int top, int widt
QVector<EventList *> &evec = ci.value();
num_points = 0;
int evecsize=evec.size();
for (int i = 0; i < evec.size(); i++) {
for (int i = 0; i < evecsize; i++) {
num_points += evec[i]->count();
}
@ -306,7 +307,6 @@ void gLineChart::paint(QPainter &painter, gGraph &w, int left, int top, int widt
// Max number of samples taken from samples per pixel for better min/max values
const int num_averages = 20;
int evecsize=evec.size();
for (int n = 0; n < evecsize; ++n) { // for each segment
EventList &el = *evec[n];

View File

@ -13,9 +13,12 @@
#include "glcommon.h"
#ifdef BUILD_WITH_MSVC
#if (_MSC_VER < 1800)
double round(double number)
{
return number < 0.0 ? ceil(number - 0.5) : floor(number + 0.5);
}
#endif
#endif

View File

@ -61,9 +61,10 @@ const double M_PI = 3.141592653589793;
#endif
#ifdef BUILD_WITH_MSVC
// Visual C++ doesn't have round in it's maths header..
// Visual C++ earlier than 2013 doesn't have round in it's maths header..
#if (_MSC_VER < 1800)
double round(double number);
#endif
#endif
#endif // GLCOMMON_H

View File

@ -63,23 +63,20 @@ macx {
}
win32 {
DEFINES += WINVER=0x0501 # needed for mingw to pull in appropriate dbt business...probably a better way to do this
RC_FILE += win_icon.rc
LIBS += -lsetupapi
DEFINES += WINVER=0x0501 # needed for mingw to pull in appropriate dbt business...probably a better way to do this
RC_FILE += win_icon.rc
LIBS += -lsetupapi
INCLUDEPATH += $$PWD
INCLUDEPATH += $$[QT_INSTALL_PREFIX]/../src/qtbase/src/3rdparty/zlib
INCLUDEPATH += $$PWD
INCLUDEPATH += $$[QT_INSTALL_PREFIX]/../src/qtbase/src/3rdparty/zlib
}
if (win32-msvc2008|win32-msvc2010|win32-msvc2012) {
!equals(TEMPLATE_PREFIX, "vc") {
LIBS += -ladvapi32
DEFINES += BUILD_WITH_MSVC=1
}
} else {
# MingW needs this
LIBS += -lz
if (*-msvc*):!equals(TEMPLATE_PREFIX, "vc") {
LIBS += -ladvapi32
DEFINES += BUILD_WITH_MSVC=1
} else {
# MingW needs this
LIBS += -lz
}
}
#include(..3rdparty/qextserialport/src/qextserialport.pri)