# This is our own CMakeLists to compile liblastfm internally
# not the ideal solutio, but we can't wait for last.fm to release
# this, so we're bundling it for now

include_directories( .
                     ..
                     ../../ # for amarok_export
                     core
                     core/mac
                     core/win
                     fingerprint
                     radio
                     scrobble
                     types
                     ws
                    )

add_definitions(${KDE4_ENABLE_EXCEPTIONS})

# core

if( APPLE )
    set( amarok_service_liblastfm_core_EXTRASRCS
        core/mac/AppleScript.cpp
        core/mac/Growl.cpp
        core/mac/CFStringToQString.cpp
        )
endif( APPLE )

if( WIN32 )
    set( amarok_service_liblastfm_EXTRASRCS
        core/win/Utils.cpp
        core/NdisEvents_win.cpp
        core/WmiSink_win.cpp
       )
endif( WIN32 )

set( amarok_service_liblastfm_SRCS
        core/CoreDir.cpp
        core/CoreDomElement.cpp
        core/CoreLocale.cpp
        core/CoreProcess.cpp
        core/CoreSysInfo.cpp
        core/CoreUrl.cpp
        core/QMessageBoxBuilder.cpp
        core/UniqueApplication.cpp
        radio/Playlist.cpp
        radio/Tuner.cpp
        scrobble/NowPlaying.cpp
        scrobble/ScrobbleCache.cpp
        scrobble/Scrobble.cpp
        scrobble/Scrobbler.cpp
        scrobble/ScrobblerHandshake.cpp
        scrobble/ScrobblerHttp.cpp
        scrobble/ScrobblerSubmission.cpp
        types/Album.cpp
        types/Artist.cpp
        types/Mbid.cpp
        types/Tag.cpp
        types/Track.cpp
        types/User.cpp
        ws/WsAccessManager.cpp
        ws/WsAutoProxy.cpp
        ws/WsNetEvent.cpp
        ws/WsProxy.cpp
        ws/WsReply.cpp
        ws/WsRequestBuilder.cpp
        ws/WsRequestParameters.cpp
   )


kde4_add_library(amarok_service_liblastfm SHARED ${amarok_service_liblastfm_SRCS} ${amarok_service_liblastfm_core_EXTRASRCS} )
target_link_libraries(amarok_service_liblastfm
                        ${QT_QTCORE_LIBRARY}
                        ${QT_QTXML_LIBRARY}
                        ${QT_QTGUI_LIBRARY}
                        ${QT_QTNETWORK_LIBRARY}
                        ${KDE4_PHONON_LIBRARY} )


if(APPLE)
    SET_TARGET_PROPERTIES(amarok_service_liblastfm PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
endif(APPLE)

install(TARGETS amarok_service_liblastfm DESTINATION ${LIB_INSTALL_DIR} )
