aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/scrobbler/CMakeLists.txt
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-01-23 18:03:45 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-01-23 18:03:45 +0000
commit7164404b2e0d428b4f0083255d0ed140740b7146 (patch)
tree47e58d0907096538d26aaa11ccb9a510adc34136 /src/plugins/General/scrobbler/CMakeLists.txt
parent1988a82eb1f120af57a9d2d77ca448a7bc459615 (diff)
downloadqmmp-7164404b2e0d428b4f0083255d0ed140740b7146.tar.gz
qmmp-7164404b2e0d428b4f0083255d0ed140740b7146.tar.bz2
qmmp-7164404b2e0d428b4f0083255d0ed140740b7146.zip
scrobbler: refactoring again
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3187 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General/scrobbler/CMakeLists.txt')
-rw-r--r--src/plugins/General/scrobbler/CMakeLists.txt15
1 files changed, 10 insertions, 5 deletions
diff --git a/src/plugins/General/scrobbler/CMakeLists.txt b/src/plugins/General/scrobbler/CMakeLists.txt
index f548508cd..f0b007741 100644
--- a/src/plugins/General/scrobbler/CMakeLists.txt
+++ b/src/plugins/General/scrobbler/CMakeLists.txt
@@ -30,18 +30,23 @@ link_directories(${CMAKE_CURRENT_BINARY_DIR}/../../../qmmp)
SET(libscrobbler_SRCS
settingsdialog.cpp
- scrobbler.cpp
scrobblerhandler.cpp
scrobblerfactory.cpp
- scrobbler2.cpp
+ scrobblercache.cpp
+ lastfmscrobbler.cpp
+ librefmscrobbler.cpp
)
SET(libscrobbler_MOC_HDRS
settingsdialog.h
scrobblerfactory.h
scrobblerhandler.h
- scrobbler.h
- scrobbler2.h
+ lastfmscrobbler.h
+ librefmscrobbler.h
+)
+
+SET(libscrobbler_HDRS
+ scrobblercache.h
)
SET(libscrobbler_RCCS translations/translations.qrc)
@@ -63,7 +68,7 @@ QT4_WRAP_UI(libscrobbler_UIS_H ${libscrobbler_UIS})
include_directories(${CMAKE_CURRENT_BINARY_DIR})
ADD_LIBRARY(scrobbler MODULE ${libscrobbler_SRCS} ${libscrobbler_MOC_SRCS} ${libscrobbler_UIS_H}
- ${libscrobbler_RCC_SRCS})
+ ${libscrobbler_RCC_SRCS} ${libscrobbler_HDRS})
add_dependencies(scrobbler qmmpui)
target_link_libraries(scrobbler ${QT_LIBRARIES} -lqmmpui -lqmmp)
install(TARGETS scrobbler DESTINATION ${LIB_DIR}/qmmp/General)