Changeset 181 for smplayer/trunk/src/smplayer.pro
- Timestamp:
- Aug 31, 2016, 5:31:04 PM (9 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk
- Property svn:mergeinfo changed
/smplayer/vendor/current merged: 179
- Property svn:mergeinfo changed
-
smplayer/trunk/src/smplayer.pro
r176 r181 16 16 DEFINES += YOUTUBE_SUPPORT 17 17 DEFINES += BLURAY_SUPPORT 18 DEFINES += TV_SUPPORT 18 19 DEFINES += GUI_CHANGE_ON_RUNTIME 19 20 DEFINES += LOG_MPLAYER … … 34 35 DEFINES += BOOKMARKS 35 36 DEFINES += MOUSE_GESTURES 37 DEFINES += GLOBALSHORTCUTS 36 38 37 39 !os2 { … … 54 56 DEFINES += SHARE_WIDGET 55 57 58 # If Qt >= 5.4 59 greaterThan(QT_MAJOR_VERSION, 4):greaterThan(QT_MINOR_VERSION, 3) { 60 DEFINES += HDPI_SUPPORT 61 } 56 62 57 63 #DEFINES += SIMPLE_BUILD 64 #DEFINES += IDOPT_BUILD 58 65 59 66 contains( DEFINES, SIMPLE_BUILD ) { … … 73 80 DEFINES -= AUTO_SHUTDOWN_PC 74 81 DEFINES -= BOOKMARKS 82 DEFINES -= TV_SUPPORT 83 } 84 85 contains( DEFINES, IDOPT_BUILD ) { 86 DEFINES -= MPCGUI 87 DEFINES -= SKINS 88 DEFINES -= CAPTURE_STREAM 89 DEFINES -= TV_SUPPORT 90 DEFINES -= MPLAYER_SUPPORT 91 DEFINES -= MPLAYER2_SUPPORT 75 92 } 76 93 … … 78 95 QT += widgets gui 79 96 #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x040000 80 DEFINES -= MPCGUI81 97 win32 { 82 98 DEFINES -= MPRIS2 … … 110 126 DEFINES -= UPDATE_CHECKER 111 127 message("UPDATE_CHECKER disabled.") 128 } 129 } 130 131 contains( DEFINES, GLOBALSHORTCUTS ) { 132 lessThan(QT_MAJOR_VERSION, 5) { 133 DEFINES -= GLOBALSHORTCUTS 134 message("GLOBALSHORTCUTS requires Qt 5. Disabled.") 112 135 } 113 136 } … … 147 170 filesettingshash.h \ 148 171 filehash.h \ 149 tvsettings.h \150 172 images.h \ 151 173 inforeader.h \ … … 154 176 urlhistory.h \ 155 177 core.h \ 178 myscroller.h \ 156 179 logwindow.h \ 180 infowindow.h \ 157 181 infofile.h \ 158 182 seekwidget.h \ … … 178 202 prefadvanced.h \ 179 203 prefplaylist.h \ 180 preftv.h \181 204 prefupdates.h \ 182 205 prefnetwork.h \ … … 202 225 timedialog.h \ 203 226 favorites.h \ 204 tvlist.h \205 227 favoriteeditor.h \ 206 228 statewidget.h \ … … 245 267 filesettingshash.cpp \ 246 268 filehash.cpp \ 247 tvsettings.cpp \248 269 images.cpp \ 249 270 inforeader.cpp \ … … 252 273 urlhistory.cpp \ 253 274 core.cpp \ 275 myscroller.cpp \ 254 276 logwindow.cpp \ 277 infowindow.cpp \ 255 278 infofile.cpp \ 256 279 seekwidget.cpp \ … … 276 299 prefadvanced.cpp \ 277 300 prefplaylist.cpp \ 278 preftv.cpp \279 301 prefupdates.cpp \ 280 302 prefnetwork.cpp \ … … 300 322 timedialog.cpp \ 301 323 favorites.cpp \ 302 tvlist.cpp \303 324 favoriteeditor.cpp \ 304 325 statewidget.cpp \ … … 315 336 main.cpp 316 337 317 FORMS = inputdvddirectory.ui logwindow base.ui filepropertiesdialog.ui \338 FORMS = inputdvddirectory.ui logwindow.ui infowindow.ui filepropertiesdialog.ui \ 318 339 eqslider.ui seekwidget.ui inputurl.ui videoequalizer.ui vdpauproperties.ui \ 319 340 preferencesdialog.ui prefgeneral.ui prefdrives.ui prefinterface.ui \ 320 341 prefperformance.ui prefinput.ui prefsubtitles.ui prefadvanced.ui \ 321 prefplaylist.ui pref tv.ui prefupdates.ui prefnetwork.ui favoriteeditor.ui \342 prefplaylist.ui prefupdates.ui prefnetwork.ui favoriteeditor.ui \ 322 343 about.ui inputmplayerversion.ui errordialog.ui timedialog.ui stereo3ddialog.ui \ 323 344 toolbareditor.ui multilineinputdialog.ui 345 346 contains( DEFINES, TV_SUPPORT ) { 347 HEADERS += tvlist.h preftv.h tvsettings.h 348 SOURCES += tvlist.cpp preftv.cpp tvsettings.cpp 349 FORMS += preftv.ui 350 } 324 351 325 352 contains( DEFINES, MPV_SUPPORT ) { … … 523 550 SOURCES += inputbookmark.cpp bookmarkdialog.cpp 524 551 FORMS += inputbookmark.ui bookmarkdialog.ui 552 } 553 554 contains( DEFINES, GLOBALSHORTCUTS ) { 555 HEADERS += globalshortcuts/globalshortcuts.h 556 SOURCES += globalshortcuts/globalshortcuts.cpp 557 unix { 558 QT += gui-private 559 LIBS += $${QMAKE_LIBS_X11} 560 } 561 } 562 563 contains( DEFINES, HDPI_SUPPORT ) { 564 HEADERS += hdpisupport.h 565 SOURCES += hdpisupport.cpp 525 566 } 526 567
Note:
See TracChangeset
for help on using the changeset viewer.