mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-01-17 14:28:24 +01:00
28 lines
763 B
CMake
28 lines
763 B
CMake
# - Try to find LibLastFm
|
|
#
|
|
# LIBLASTFM_FOUND - system has liblastfm
|
|
# LIBLASTFM_INCLUDE_DIRS - the liblastfm include directories
|
|
# LIBLASTFM_LIBRARIES - link these to use liblastfm
|
|
#
|
|
# (c) Dominik Schmidt <dev@dominik-schmidt.de>
|
|
#
|
|
|
|
# Include dir
|
|
find_path(LIBLASTFM_INCLUDE_DIR
|
|
# Track.h doesn't exist in liblastfm-0.3.1, was called Track back then
|
|
NAMES lastfm5/Track.h
|
|
)
|
|
|
|
# Finally the library itself
|
|
find_library(LIBLASTFM_LIBRARY
|
|
NAMES lastfm5
|
|
)
|
|
|
|
set(LIBLASTFM_LIBRARIES ${LIBLASTFM_LIBRARY})
|
|
set(LIBLASTFM_INCLUDE_DIRS ${LIBLASTFM_INCLUDE_DIR})
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(LibLastFm DEFAULT_MSG LIBLASTFM_LIBRARIES LIBLASTFM_INCLUDE_DIRS)
|
|
|
|
mark_as_advanced(LIBLASTFM_LIBRARIES LIBLASTFM_INCLUDE_DIRS)
|