forked from organicmaps/organicmaps
[mingw] Compilation fixes
This commit is contained in:
parent
1d79740366
commit
9f5f2d9eb0
6 changed files with 30 additions and 41 deletions
|
@ -5,6 +5,7 @@
|
|||
#include <sys/errno.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/fcntl.h>
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
#include "profiler.hpp"
|
||||
|
||||
#include "../std/timer.hpp"
|
||||
#include "timer.hpp"
|
||||
|
||||
namespace prof
|
||||
{
|
||||
boost::timer timer;
|
||||
my::Timer timer;
|
||||
|
||||
double * metrics()
|
||||
{
|
||||
|
@ -14,6 +14,6 @@ namespace prof
|
|||
|
||||
double timer_elapsed()
|
||||
{
|
||||
return timer.elapsed();
|
||||
return timer.ElapsedSeconds();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@ include($$ROOT_DIR/common.pri)
|
|||
QT *= core network
|
||||
|
||||
win32 {
|
||||
LIBS += -lShell32
|
||||
LIBS += -lShell32 -lpthread
|
||||
}
|
||||
|
||||
SOURCES += \
|
||||
|
|
|
@ -2,13 +2,13 @@
|
|||
|
||||
#include "../base/assert.hpp"
|
||||
#include "../base/macros.hpp"
|
||||
#include "../base/timer.hpp"
|
||||
|
||||
#include <QtCore/QDir>
|
||||
#include <QtCore/QFileInfo>
|
||||
#include <QtCore/QTemporaryFile>
|
||||
|
||||
#include "../std/target_os.hpp"
|
||||
#include "../std/timer.hpp"
|
||||
|
||||
#if defined(OMIM_OS_WINDOWS)
|
||||
#include "../std/windows.hpp"
|
||||
|
@ -174,7 +174,7 @@ static bool IsDirectoryWritable(string const & dir)
|
|||
////////////////////////////////////////////////////////////////////////////////////////
|
||||
class QtPlatform : public Platform
|
||||
{
|
||||
boost::timer m_startTime;
|
||||
my::Timer m_startTime;
|
||||
string m_writableDir;
|
||||
string m_resourcesDir;
|
||||
|
||||
|
@ -258,7 +258,7 @@ public:
|
|||
|
||||
virtual double TimeInSec() const
|
||||
{
|
||||
return m_startTime.elapsed();
|
||||
return m_startTime.ElapsedSeconds();
|
||||
}
|
||||
|
||||
/// @return path to /data/ with ending slash
|
||||
|
|
42
qt/main.cpp
42
qt/main.cpp
|
@ -1,6 +1,8 @@
|
|||
#include "mainwindow.hpp"
|
||||
#include "info_dialog.hpp"
|
||||
|
||||
#include "../std/stdio.hpp"
|
||||
|
||||
#include "../map/settings.hpp"
|
||||
|
||||
#include "../platform/platform.hpp"
|
||||
|
@ -14,22 +16,22 @@
|
|||
|
||||
#include <QtGui/QApplication>
|
||||
|
||||
#ifdef OMIM_OS_WINDOWS
|
||||
#include <../src/gui/image/qimageiohandler.h>
|
||||
#include <../src/network/bearer/qbearerplugin_p.h>
|
||||
#include <../src/corelib/plugin/qfactoryloader_p.h>
|
||||
#endif
|
||||
//#ifdef OMIM_OS_WINDOWS
|
||||
// #include <../src/gui/image/qimageiohandler.h>
|
||||
// #include <../src/network/bearer/qbearerplugin_p.h>
|
||||
// #include <../src/corelib/plugin/qfactoryloader_p.h>
|
||||
//#endif
|
||||
|
||||
//#include <google/protobuf/stubs/common.h>
|
||||
|
||||
#include "../base/start_mem_debug.hpp"
|
||||
|
||||
#ifdef OMIM_OS_WINDOWS
|
||||
Q_GLOBAL_STATIC_WITH_ARGS(QFactoryLoader, imageLoader,
|
||||
(QImageIOHandlerFactoryInterface_iid, QLatin1String("/imageformats")))
|
||||
Q_GLOBAL_STATIC_WITH_ARGS(QFactoryLoader, bearerLoader,
|
||||
(QBearerEngineFactoryInterface_iid, QLatin1String("/bearer")))
|
||||
#endif
|
||||
//#ifdef OMIM_OS_WINDOWS
|
||||
//Q_GLOBAL_STATIC_WITH_ARGS(QFactoryLoader, imageLoader,
|
||||
// (QImageIOHandlerFactoryInterface_iid, QLatin1String("/imageformats")))
|
||||
//Q_GLOBAL_STATIC_WITH_ARGS(QFactoryLoader, bearerLoader,
|
||||
// (QBearerEngineFactoryInterface_iid, QLatin1String("/bearer")))
|
||||
//#endif
|
||||
|
||||
|
||||
#define SETTING_EULA_ACCEPTED "EulaAccepted"
|
||||
|
@ -107,16 +109,16 @@ int main(int argc, char *argv[])
|
|||
returnCode = a.exec();
|
||||
}
|
||||
// QTBUG: Fix memory leaks. Nobody delete created plugins.
|
||||
#ifdef OMIM_OS_WINDOWS
|
||||
QFactoryLoader * arr[] = { imageLoader(), bearerLoader() };
|
||||
for (int i = 0; i < 2; ++i)
|
||||
{
|
||||
QStringList const & keys = arr[i]->keys();
|
||||
//#ifdef OMIM_OS_WINDOWS
|
||||
// QFactoryLoader * arr[] = { imageLoader(), bearerLoader() };
|
||||
// for (int i = 0; i < 2; ++i)
|
||||
// {
|
||||
// QStringList const & keys = arr[i]->keys();
|
||||
|
||||
for (int j = 0; j < keys.count(); ++j)
|
||||
delete arr[i]->instance(keys.at(j));
|
||||
}
|
||||
#endif
|
||||
// for (int j = 0; j < keys.count(); ++j)
|
||||
// delete arr[i]->instance(keys.at(j));
|
||||
// }
|
||||
//#endif
|
||||
|
||||
LOG(LINFO, ("MapsWithMe finished with code : ", returnCode));
|
||||
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
#pragma once
|
||||
|
||||
#include "common_defines.hpp"
|
||||
|
||||
#ifdef new
|
||||
#undef new
|
||||
#endif
|
||||
|
||||
#include <boost/timer.hpp>
|
||||
//using boost::timer; do not use word timer, because it's very common
|
||||
|
||||
#ifdef DEBUG_NEW
|
||||
#define new DEBUG_NEW
|
||||
#endif
|
Loading…
Add table
Reference in a new issue