2021-06-30 20:51:09 +02:00
|
|
|
include_directories(${LIBSPOTIFY_INCLUDE_DIRS})
|
2011-04-29 21:44:51 +02:00
|
|
|
include_directories(${PROTOBUF_INCLUDE_DIRS})
|
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
2012-01-06 00:22:51 +01:00
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
include_directories(${CMAKE_BINARY_DIR}/ext/libclementine-spotifyblob)
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/ext/libclementine-spotifyblob)
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/ext/libclementine-common)
|
2011-04-29 21:44:51 +02:00
|
|
|
|
2020-12-16 20:03:26 +01:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Woverloaded-virtual -Wall -Wno-sign-compare -Wno-deprecated-declarations -Wno-unused-local-typedefs -Wno-unused-private-field -Wno-unknown-warning-option")
|
2014-02-06 18:06:25 +01:00
|
|
|
|
2021-06-30 20:51:09 +02:00
|
|
|
link_directories(${LIBSPOTIFY_LIBRARY_DIRS})
|
2011-04-29 21:44:51 +02:00
|
|
|
|
|
|
|
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR})
|
|
|
|
|
|
|
|
set(SOURCES
|
|
|
|
main.cpp
|
2011-11-28 19:11:09 +01:00
|
|
|
mediapipeline.cpp
|
2011-04-29 21:44:51 +02:00
|
|
|
spotifyclient.cpp
|
2011-07-07 16:54:22 +02:00
|
|
|
spotify_utilities.cpp
|
2011-04-29 21:44:51 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
set(HEADERS
|
|
|
|
spotifyclient.h
|
|
|
|
)
|
|
|
|
|
2011-07-07 17:12:29 +02:00
|
|
|
if(APPLE)
|
|
|
|
list(APPEND SOURCES spotify_utilities.mm)
|
|
|
|
endif(APPLE)
|
|
|
|
|
2015-04-11 22:51:40 +02:00
|
|
|
qt5_wrap_cpp(MOC ${HEADERS})
|
2011-04-29 21:44:51 +02:00
|
|
|
|
2011-04-30 20:32:39 +02:00
|
|
|
if(WIN32 AND NOT CMAKE_BUILD_TYPE STREQUAL "Debug" AND NOT ENABLE_WIN32_CONSOLE)
|
2011-04-30 20:22:14 +02:00
|
|
|
set(win32_build_flag WIN32)
|
2011-04-30 20:32:39 +02:00
|
|
|
endif(WIN32 AND NOT CMAKE_BUILD_TYPE STREQUAL "Debug" AND NOT ENABLE_WIN32_CONSOLE)
|
2011-04-30 20:22:14 +02:00
|
|
|
|
2011-04-29 21:44:51 +02:00
|
|
|
add_executable(clementine-spotifyblob
|
2011-05-05 23:24:09 +02:00
|
|
|
${win32_build_flag}
|
2011-04-29 21:44:51 +02:00
|
|
|
${SOURCES}
|
|
|
|
${MOC}
|
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(clementine-spotifyblob
|
2019-03-18 18:57:57 +01:00
|
|
|
${LIBSPOTIFY_LIBRARIES} ${LIBSPOTIFY_LDFLAGS}
|
2011-04-29 21:44:51 +02:00
|
|
|
${QT_QTCORE_LIBRARY}
|
|
|
|
${QT_QTNETWORK_LIBRARY}
|
2011-11-28 19:11:09 +01:00
|
|
|
${GSTREAMER_BASE_LIBRARIES}
|
|
|
|
${GSTREAMER_APP_LIBRARIES}
|
2015-12-13 14:02:07 +01:00
|
|
|
${PROTOBUF_STATIC_LIBRARY}
|
2011-04-29 21:44:51 +02:00
|
|
|
clementine-spotifyblob-messages
|
2012-01-06 00:22:51 +01:00
|
|
|
libclementine-common
|
2011-04-29 21:44:51 +02:00
|
|
|
)
|
|
|
|
|
2011-07-07 17:12:29 +02:00
|
|
|
if(APPLE)
|
|
|
|
target_link_libraries(clementine-spotifyblob
|
2016-12-15 12:36:05 +01:00
|
|
|
"-framework Foundation"
|
2011-07-07 17:12:29 +02:00
|
|
|
)
|
|
|
|
endif(APPLE)
|
|
|
|
|
2011-05-08 00:53:50 +02:00
|
|
|
if(NOT APPLE)
|
|
|
|
# macdeploy.py takes care of this on mac
|
2011-05-08 00:46:44 +02:00
|
|
|
install(TARGETS clementine-spotifyblob
|
|
|
|
RUNTIME DESTINATION bin
|
|
|
|
)
|
2011-05-08 00:53:50 +02:00
|
|
|
endif(NOT APPLE)
|
2011-04-29 21:44:51 +02:00
|
|
|
|
|
|
|
if(LINUX)
|
|
|
|
# Versioned name of the blob
|
|
|
|
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
|
|
|
|
set(SPOTIFY_BLOB_ARCH 32)
|
|
|
|
else(CMAKE_SIZEOF_VOID_P EQUAL 4)
|
|
|
|
set(SPOTIFY_BLOB_ARCH 64)
|
|
|
|
endif(CMAKE_SIZEOF_VOID_P EQUAL 4)
|
|
|
|
|
|
|
|
install(
|
|
|
|
FILES ${CMAKE_BINARY_DIR}/clementine-spotifyblob
|
2011-04-29 22:01:04 +02:00
|
|
|
DESTINATION ${CMAKE_BINARY_DIR}/spotify/version${SPOTIFY_BLOB_VERSION}-${SPOTIFY_BLOB_ARCH}bit/
|
|
|
|
RENAME blob
|
2011-04-29 21:44:51 +02:00
|
|
|
)
|
|
|
|
endif(LINUX)
|