mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
It is now possible to build QupZilla with Microsoft Visual C++ Compiler
2008
This commit is contained in:
parent
f649151cca
commit
c9113ccd1d
10
BUILDING
10
BUILDING
|
@ -17,11 +17,10 @@
|
||||||
>> Microsoft Windows <<
|
>> Microsoft Windows <<
|
||||||
>> <<
|
>> <<
|
||||||
|
|
||||||
You need Microsoft Visual C++ Compiler 2010
|
You need Microsoft Visual C++ Compiler 2008
|
||||||
in order to build QupZilla. It is because
|
or higher in order to build QupZilla. If You want
|
||||||
QupZilla is using Windows 7 API and therefore
|
use JumpLists in Windows TaskBar, then You need
|
||||||
corresponding headers are included only on versions
|
Microsoft Visual C++ Compiler 2010 and define W7API (more info at the bottom)
|
||||||
2010 and above.
|
|
||||||
If you don't meet this, please use precompiled versions,
|
If you don't meet this, please use precompiled versions,
|
||||||
which are also in smart windows installer.
|
which are also in smart windows installer.
|
||||||
|
|
||||||
|
@ -54,6 +53,7 @@
|
||||||
|
|
||||||
Windows specific defines
|
Windows specific defines
|
||||||
W7API Build QupZilla with Windows 7 API support
|
W7API Build QupZilla with Windows 7 API support
|
||||||
|
Requires Microsoft Visual C++ Compiler 2010
|
||||||
(enabled by default)
|
(enabled by default)
|
||||||
|
|
||||||
Linux / Unix specific defines:
|
Linux / Unix specific defines:
|
||||||
|
|
4
src/3rdparty/qtwin.cpp
vendored
4
src/3rdparty/qtwin.cpp
vendored
|
@ -233,6 +233,7 @@ QColor QtWin::colorizationColor()
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef Q_WS_WIN
|
#ifdef Q_WS_WIN
|
||||||
|
#ifdef W7API
|
||||||
WindowNotifier *QtWin::windowNotifier()
|
WindowNotifier *QtWin::windowNotifier()
|
||||||
{
|
{
|
||||||
static WindowNotifier *windowNotifierInstance = 0;
|
static WindowNotifier *windowNotifierInstance = 0;
|
||||||
|
@ -350,7 +351,8 @@ void QtWin::AddTasksToList(ICustomDestinationList* destinationList) {
|
||||||
object_array->Release();
|
object_array->Release();
|
||||||
obj_collection->Release();
|
obj_collection->Release();
|
||||||
}
|
}
|
||||||
#endif
|
#endif //Q_WS_WIN
|
||||||
|
#endif //W7API
|
||||||
|
|
||||||
void QtWin::setupJumpList() {
|
void QtWin::setupJumpList() {
|
||||||
#ifdef W7API
|
#ifdef W7API
|
||||||
|
|
Loading…
Reference in New Issue
Block a user