Ignore:
Timestamp:
Dec 3, 2012, 5:29:00 PM (13 years ago)
Author:
Silvan Scherrer
Message:

SMPlayer: updated vendor to 0.8.2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • smplayer/vendor/current/src/smplayer.pro

    r133 r137  
    1818DEFINES += VIDEOPREVIEW
    1919DEFINES += YOUTUBE_SUPPORT
    20 DEFINES += TOOLBAR_EDITOR
    2120DEFINES += GUI_CHANGE_ON_RUNTIME
    2221DEFINES += LOG_MPLAYER
    2322DEFINES += LOG_SMPLAYER
     23DEFINES += SKINS
    2424
    2525# Disable SINGLE_INSTANCE if Qt < 4.4
     
    2828                message("SINGLE_INSTANCE requires Qt > 4.3. Disabled.")
    2929                DEFINES -= SINGLE_INSTANCE
     30        }
     31}
     32
     33# Disable SKINS if Qt < 4.4
     34contains( DEFINES, SKINS ) {
     35        contains(QT_VERSION, ^4\\.[0-3]\\..*) {
     36                message("SKINS requires Qt > 4.3. Disabled.")
     37                DEFINES -= SKINS
    3038        }
    3139}
     
    300308}
    301309
     310# Skins support
     311contains( DEFINES, SKINS ) {
     312        INCLUDEPATH += skingui
     313        DEPENDPATH += skingui
     314
     315        HEADERS += myicon.h mybutton.h panelseeker.h playcontrol.h \
     316               mediapanel.h volumecontrolpanel.h mediabarpanel.h \
     317               qpropertysetter.h actiontools.h skingui.h
     318        SOURCES += myicon.cpp mybutton.cpp panelseeker.cpp playcontrol.cpp \
     319               mediapanel.cpp volumecontrolpanel.cpp mediabarpanel.cpp \
     320               qpropertysetter.cpp actiontools.cpp skingui.cpp
     321        FORMS += mediapanel.ui mediabarpanel.ui
     322}
     323
    302324# Videopreview
    303325contains( DEFINES, VIDEOPREVIEW ) {
     
    326348win32 {
    327349        DEFINES += SCREENSAVER_OFF
     350        DEFINES += FONTCACHE_DIALOG
     351
    328352        contains( DEFINES, SCREENSAVER_OFF ) {
    329353                HEADERS += screensaver.h
    330354                SOURCES += screensaver.cpp
     355        }
     356
     357        contains( DEFINES, FONTCACHE_DIALOG ) {
     358                HEADERS += fontcache.h
     359                SOURCES += fontcache.cpp
    331360        }
    332361
     
    349378        RC_FILE = smplayer.rc
    350379        DEFINES += NO_DEBUG_ON_CONSOLE
    351 #       debug {
    352 #               CONFIG += console
    353 #       }
     380        #debug {
     381        #       CONFIG += console
     382        #}
    354383}
    355384
Note: See TracChangeset for help on using the changeset viewer.