File tree 2 files changed +13
-0
lines changed
2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -123,11 +123,18 @@ CONFIG(debug, debug|release){
123
123
QGISPROJECTIONSELECTORLIBADD =$$member (QGISPROJECTIONSELECTORLIBADD , 0 )-debug
124
124
}
125
125
126
+ # not currently used since I had to incorporate composer into gui lib due to
127
+ # cyclical dependency issues
126
128
QGISCOMPOSERLIBADD =-lqgis_composer
127
129
CONFIG (debug , debug |release ){
128
130
QGISCOMPOSERLIBADD =$$member (QGISCOMPOSERLIBADD , 0 )-debug
129
131
}
130
132
133
+ QGISGUILIBADD =-lqgis_gui
134
+ CONFIG (debug , debug |release ){
135
+ QGISGUILIBADD =$$member (QGISGUILIBADD , 0 )-debug
136
+ }
137
+
131
138
win32 :GDALLIBADD =-lgdal
132
139
unix :GDALLIBADD =-lgdal
133
140
macx:GDALLIBADD =-framework gdal
Original file line number Diff line number Diff line change 30
30
#include < QString>
31
31
#include < QStringList>
32
32
#include < QStyle>
33
+ #include < QPlastiqueStyle>
33
34
#include < QTextCodec>
34
35
#include < QTranslator>
35
36
@@ -404,6 +405,11 @@ int main(int argc, char *argv[])
404
405
QString testFile = " lt-qgis" ;
405
406
#endif
406
407
408
+ #ifdef Q_WS_WIN
409
+ // for windows lets use plastique syle!
410
+ QApplication::setStyle (new QPlastiqueStyle);
411
+ #endif
412
+
407
413
if (appPath.contains (" /src/" ))
408
414
{
409
415
// check to see if configure is present in the directory
You can’t perform that action at this time.
0 commit comments