1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-13 17:43:59 +02:00

* Forgot to move XSPFLoader.

This commit is contained in:
Christian Muehlhaeuser
2011-01-17 09:37:01 +01:00
parent 850439fb04
commit 722f633d5e
6 changed files with 7 additions and 4 deletions

View File

@@ -56,7 +56,6 @@ SET( tomahawkSourcesGui ${tomahawkSourcesGui}
topbar/lineedit.cpp topbar/lineedit.cpp
topbar/searchbutton.cpp topbar/searchbutton.cpp
xspfloader.cpp
transferview.cpp transferview.cpp
tomahawktrayicon.cpp tomahawktrayicon.cpp
audiocontrols.cpp audiocontrols.cpp
@@ -94,7 +93,6 @@ SET( tomahawkHeadersGui ${tomahawkHeadersGui}
topbar/lineedit_p.h topbar/lineedit_p.h
topbar/searchbutton.h topbar/searchbutton.h
xspfloader.h
transferview.h transferview.h
tomahawktrayicon.h tomahawktrayicon.h
audiocontrols.h audiocontrols.h

View File

@@ -100,6 +100,7 @@ set( libSources
utils/proxystyle.cpp utils/proxystyle.cpp
utils/widgetdragfilter.cpp utils/widgetdragfilter.cpp
utils/animatedsplitter.cpp utils/animatedsplitter.cpp
utils/xspfloader.cpp
widgets/newplaylistwidget.cpp widgets/newplaylistwidget.cpp
widgets/welcomewidget.cpp widgets/welcomewidget.cpp
@@ -198,6 +199,7 @@ set( libHeaders
utils/progresstreeview.h utils/progresstreeview.h
utils/widgetdragfilter.h utils/widgetdragfilter.h
utils/animatedsplitter.h utils/animatedsplitter.h
utils/xspfloader.h
widgets/newplaylistwidget.h widgets/newplaylistwidget.h
widgets/welcomewidget.h widgets/welcomewidget.h
@@ -241,6 +243,9 @@ SET( OS_SPECIFIC_LINK_LIBRARIES
ENDIF( WIN32 ) ENDIF( WIN32 )
IF( APPLE ) IF( APPLE )
SET( libSources ${libSources} audio/rtaudiooutput.cpp )
SET( libHeaders ${libHeaders} audio/rtaudiooutput.h )
SET( OS_SPECIFIC_LINK_LIBRARIES SET( OS_SPECIFIC_LINK_LIBRARIES
${OS_SPECIFIC_LINK_LIBRARIES} ${OS_SPECIFIC_LINK_LIBRARIES}
${COREAUDIO_LIBRARY} ${COREAUDIO_LIBRARY}

View File

@@ -10,7 +10,7 @@
#include "playlist/playlistmodel.h" #include "playlist/playlistmodel.h"
#include "pipeline.h" #include "pipeline.h"
#include "xspfloader.h" #include "utils/xspfloader.h"
#include "sourcelist.h" #include "sourcelist.h"

View File

@@ -6,7 +6,7 @@
#include "album.h" #include "album.h"
#include "result.h" #include "result.h"
#include "playlistinterface.h" #include "playlist/playlistinterface.h"
#include "dllmacro.h" #include "dllmacro.h"