Clementine-audio-player-Mac.../src/src.pro

144 lines
3.6 KiB
Prolog

# -------------------------------------------------
# Project created by QtCreator 2009-12-15T18:38:35
# -------------------------------------------------
QT += sql \
network \
opengl \
xml
TARGET = clementine
TEMPLATE = app
SOURCES += main.cpp \
mainwindow.cpp \
player.cpp \
library.cpp \
librarybackend.cpp \
playlist.cpp \
playlistitem.cpp \
enginebase.cpp \
analyzers/baranalyzer.cpp \
analyzers/analyzerbase.cpp \
fht.cpp \
analyzers/blockanalyzer.cpp \
xine-engine.cpp \
xine-scope.c \
sliderwidget.cpp \
playlistview.cpp \
backgroundthread.cpp \
librarywatcher.cpp \
song.cpp \
songplaylistitem.cpp \
libraryview.cpp \
libraryconfig.cpp \
systemtrayicon.cpp \
libraryquery.cpp \
fileview.cpp \
fileviewlist.cpp \
playlistheader.cpp \
radioitem.cpp \
radioservice.cpp \
lastfmservice.cpp \
radiomodel.cpp \
lastfmconfig.cpp \
busyindicator.cpp \
radioplaylistitem.cpp \
radioloadingindicator.cpp \
radioview.cpp \
lastfmstationdialog.cpp \
osd.cpp \
trackslider.cpp \
edittagdialog.cpp \
lineedit.cpp \
multiloadingindicator.cpp
HEADERS += mainwindow.h \
player.h \
library.h \
librarybackend.h \
playlist.h \
playlistitem.h \
enginebase.h \
engine_fwd.h \
analyzers/baranalyzer.h \
analyzers/analyzerbase.h \
fht.h \
analyzers/blockanalyzer.h \
xine-engine.h \
xine-scope.h \
sliderwidget.h \
playlistview.h \
backgroundthread.h \
librarywatcher.h \
directory.h \
song.h \
songmimedata.h \
songplaylistitem.h \
libraryview.h \
libraryitem.h \
libraryconfig.h \
systemtrayicon.h \
libraryquery.h \
fileview.h \
fileviewlist.h \
playlistheader.h \
simpletreeitem.h \
radioitem.h \
radioservice.h \
lastfmservice.h \
simpletreemodel.h \
radiomodel.h \
lastfmconfig.h \
busyindicator.h \
radiomimedata.h \
radioplaylistitem.h \
radioloadingindicator.h \
radioview.h \
lastfmstationdialog.h \
../3rdparty/qxt/keymapper_x11.h \
osd.h \
trackslider.h \
edittagdialog.h \
lineedit.h \
multiloadingindicator.h
FORMS += mainwindow.ui \
libraryconfig.ui \
fileview.ui \
lastfmconfig.ui \
radioloadingindicator.ui \
lastfmstationdialog.ui \
trackslider.ui \
edittagdialog.ui \
multiloadingindicator.ui
RESOURCES += ../data/data.qrc
OTHER_FILES += ../data/schema.sql \
../data/mainwindow.css
LIBS += -llastfm
!win32 {
QMAKE_CXXFLAGS += $$system(taglib-config --cflags)
LIBS += $$system(taglib-config --libs)
QMAKE_CXXFLAGS += $$system(xine-config --cflags)
LIBS += $$system(xine-config --libs)
QMAKE_CXXFLAGS += $$system(pkg-config --cflags libnotify)
LIBS += $$system(pkg-config --libs libnotify)
}
win32 {
INCLUDEPATH += C:/msys/1.0/local/include \
C:/msys/1.0/local/include/taglib
LIBS += -Lc:/msys/1.0/local/lib \
-Lc:/msys/1.0/local/bin \
-ltag \
-lxine \
-lpthreadGC2
}
unix:!macx:SOURCES += osd_x11.cpp
macx:SOURCES += osd_mac.cpp
# QXT
INCLUDEPATH += ../3rdparty/qxt
HEADERS += ../3rdparty/qxt/qxtglobalshortcut.h
HEADERS += ../3rdparty/qxt/qxtglobalshortcut_p.h
HEADERS += ../3rdparty/qxt/qxtglobal.h
SOURCES += ../3rdparty/qxt/qxtglobalshortcut.cpp
SOURCES += ../3rdparty/qxt/qxtglobal.cpp
unix:!macx:SOURCES += ../3rdparty/qxt/qxtglobalshortcut_x11.cpp
macx:SOURCES += ../3rdparty/qxt/qxtglobalshortcut_mac.cpp
win32:SOURCES += ../3rdparty/qxt/qxtglobalshortcut_win.cpp