diff --git a/src/TomahawkApp.cpp b/src/TomahawkApp.cpp index bae934be8..28970aa19 100644 --- a/src/TomahawkApp.cpp +++ b/src/TomahawkApp.cpp @@ -640,8 +640,10 @@ TomahawkApp::spotifyApiCheckFinished() void TomahawkApp::accountManagerReady() { +#ifdef LIBLASTFM_FOUND Tomahawk::Accounts::LastFmAccountFactory* lastfmFactory = new Tomahawk::Accounts::LastFmAccountFactory(); m_accountManager.data()->addAccountFactory( lastfmFactory ); +#endif Tomahawk::Accounts::SpotifyAccountFactory* spotifyFactory = new Tomahawk::Accounts::SpotifyAccountFactory; m_accountManager.data()->addAccountFactory( spotifyFactory ); diff --git a/src/libtomahawk/CMakeLists.txt b/src/libtomahawk/CMakeLists.txt index 825077072..2d03013ed 100644 --- a/src/libtomahawk/CMakeLists.txt +++ b/src/libtomahawk/CMakeLists.txt @@ -207,10 +207,6 @@ list(APPEND libSources accounts/spotify/SpotifyPlaylistUpdater.cpp accounts/spotify/SpotifyInfoPlugin.cpp - accounts/lastfm/LastFmAccount.cpp - accounts/lastfm/LastFmConfig.cpp - accounts/lastfm/LastFmInfoPlugin.cpp - sip/SipPlugin.cpp sip/SipInfo.cpp sip/PeerInfo.cpp @@ -321,6 +317,14 @@ list(APPEND libSources thirdparty/kdsingleapplicationguard/kdlockedsharedmemorypointer.cpp ) +IF(LIBLASTFM_FOUND) + set( libSources ${libSources} + accounts/lastfm/LastFmAccount.cpp + accounts/lastfm/LastFmConfig.cpp + accounts/lastfm/LastFmInfoPlugin.cpp + ) +ENDIF(LIBLASTFM_FOUND) + set( libUI ${libUI} widgets/PlaylistTypeSelectorDialog.ui widgets/NewPlaylistWidget.ui