2009-12-24 20:16:07 +01:00
|
|
|
# -------------------------------------------------
|
|
|
|
# Project created by QtCreator 2009-12-15T18:38:35
|
|
|
|
# -------------------------------------------------
|
|
|
|
QT += sql \
|
|
|
|
opengl
|
|
|
|
TARGET = tangerine
|
|
|
|
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 \
|
|
|
|
songmimedata.cpp \
|
|
|
|
songplaylistitem.cpp \
|
|
|
|
libraryview.cpp \
|
|
|
|
libraryconfig.cpp \
|
|
|
|
systemtrayicon.cpp \
|
2009-12-24 21:27:32 +01:00
|
|
|
libraryquery.cpp \
|
2009-12-24 23:26:58 +01:00
|
|
|
fileview.cpp \
|
2009-12-25 17:12:07 +01:00
|
|
|
fileviewlist.cpp \
|
|
|
|
playlistheader.cpp
|
2009-12-24 20:16:07 +01:00
|
|
|
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 \
|
2009-12-24 21:27:32 +01:00
|
|
|
libraryquery.h \
|
2009-12-24 23:26:58 +01:00
|
|
|
fileview.h \
|
2009-12-25 17:12:07 +01:00
|
|
|
fileviewlist.h \
|
2009-12-26 14:49:18 +01:00
|
|
|
playlistheader.h \
|
|
|
|
simpletreeitem.h
|
2009-12-24 20:16:07 +01:00
|
|
|
FORMS += mainwindow.ui \
|
2009-12-24 21:27:32 +01:00
|
|
|
libraryconfig.ui \
|
|
|
|
fileview.ui
|
2009-12-24 20:16:07 +01:00
|
|
|
RESOURCES += ../data/data.qrc
|
|
|
|
OTHER_FILES += ../data/schema.sql \
|
|
|
|
../data/mainwindow.css
|
|
|
|
!win32 {
|
|
|
|
QMAKE_CXXFLAGS += $$system(taglib-config --cflags)
|
|
|
|
LIBS += $$system(taglib-config --libs)
|
|
|
|
QMAKE_CXXFLAGS += $$system(xine-config --cflags)
|
|
|
|
LIBS += $$system(xine-config --libs)
|
|
|
|
}
|
|
|
|
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
|
|
|
|
}
|