1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00

It is now possible to build QupZilla with Microsoft Visual C++ Compiler

2008
This commit is contained in:
nowrep 2011-10-10 20:54:11 +02:00
parent f649151cca
commit c9113ccd1d
2 changed files with 8 additions and 6 deletions

View File

@ -17,11 +17,10 @@
>> Microsoft Windows <<
>> <<
You need Microsoft Visual C++ Compiler 2010
in order to build QupZilla. It is because
QupZilla is using Windows 7 API and therefore
corresponding headers are included only on versions
2010 and above.
You need Microsoft Visual C++ Compiler 2008
or higher in order to build QupZilla. If You want
use JumpLists in Windows TaskBar, then You need
Microsoft Visual C++ Compiler 2010 and define W7API (more info at the bottom)
If you don't meet this, please use precompiled versions,
which are also in smart windows installer.
@ -54,6 +53,7 @@
Windows specific defines
W7API Build QupZilla with Windows 7 API support
Requires Microsoft Visual C++ Compiler 2010
(enabled by default)
Linux / Unix specific defines:

View File

@ -233,6 +233,7 @@ QColor QtWin::colorizationColor()
}
#ifdef Q_WS_WIN
#ifdef W7API
WindowNotifier *QtWin::windowNotifier()
{
static WindowNotifier *windowNotifierInstance = 0;
@ -350,7 +351,8 @@ void QtWin::AddTasksToList(ICustomDestinationList* destinationList) {
object_array->Release();
obj_collection->Release();
}
#endif
#endif //Q_WS_WIN
#endif //W7API
void QtWin::setupJumpList() {
#ifdef W7API