2022-10-05 14:02:46 +08:00
|
|
|
cmake_minimum_required(VERSION 3.12)
|
2020-04-06 15:15:13 +08:00
|
|
|
|
|
|
|
project(pineapple-music LANGUAGES CXX)
|
|
|
|
|
2020-04-08 18:16:45 +08:00
|
|
|
include (GNUInstallDirs)
|
|
|
|
|
2020-04-06 15:15:13 +08:00
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
|
|
|
|
set(CMAKE_AUTOUIC ON)
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
set(CMAKE_AUTORCC ON)
|
|
|
|
|
2022-10-05 14:02:46 +08:00
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
2020-04-06 15:15:13 +08:00
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
|
2023-05-27 16:36:51 +08:00
|
|
|
find_package(Qt6 6.5.1 COMPONENTS Widgets Multimedia Network LinguistTools REQUIRED)
|
2024-09-08 00:34:45 +08:00
|
|
|
find_package(ECM 5.83.0 NO_MODULE)
|
2020-04-19 18:22:21 +08:00
|
|
|
find_package(PkgConfig)
|
|
|
|
|
2024-09-08 00:34:45 +08:00
|
|
|
if (ECM_FOUND)
|
|
|
|
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
|
|
|
|
include(ECMAddAppIcon)
|
|
|
|
endif()
|
|
|
|
|
2020-05-27 12:50:49 +08:00
|
|
|
if (PKG_CONFIG_FOUND)
|
2023-07-05 23:38:22 +08:00
|
|
|
pkg_check_modules(TagLib taglib IMPORTED_TARGET)
|
2020-05-27 12:50:49 +08:00
|
|
|
endif ()
|
2020-04-06 15:15:13 +08:00
|
|
|
|
2020-06-04 23:54:34 +08:00
|
|
|
set (PMUSIC_CPP_FILES
|
|
|
|
main.cpp
|
|
|
|
mainwindow.cpp
|
|
|
|
seekableslider.cpp
|
2024-09-06 00:17:39 +08:00
|
|
|
playlistmanager.cpp
|
2020-06-04 23:54:34 +08:00
|
|
|
singleapplicationmanager.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
set (PMUSIC_HEADER_FILES
|
|
|
|
mainwindow.h
|
|
|
|
seekableslider.h
|
2024-09-06 00:17:39 +08:00
|
|
|
playlistmanager.h
|
2020-06-04 23:54:34 +08:00
|
|
|
singleapplicationmanager.h
|
|
|
|
)
|
|
|
|
|
|
|
|
set (PMUSIC_UI_FILES
|
|
|
|
mainwindow.ui
|
|
|
|
)
|
|
|
|
|
2020-04-08 18:16:45 +08:00
|
|
|
set (EXE_NAME pmusic)
|
|
|
|
|
2020-06-04 23:54:34 +08:00
|
|
|
# Translation
|
|
|
|
file (GLOB PMUSIC_TS_FILES languages/*.ts)
|
|
|
|
set (PMUSIC_CPP_FILES_FOR_I18N ${PMUSIC_CPP_FILES} ${PMUSIC_UI_FILES})
|
|
|
|
|
2020-04-08 18:16:45 +08:00
|
|
|
add_executable(${EXE_NAME}
|
2020-06-04 23:54:34 +08:00
|
|
|
${PMUSIC_HEADER_FILES}
|
|
|
|
${PMUSIC_CPP_FILES}
|
|
|
|
${PMUSIC_UI_FILES}
|
|
|
|
resources.qrc
|
2024-09-07 12:14:54 +08:00
|
|
|
)
|
2020-06-04 23:54:34 +08:00
|
|
|
|
2024-09-08 00:34:45 +08:00
|
|
|
if(ECM_FOUND)
|
|
|
|
ecm_add_app_icon(${EXE_NAME}
|
|
|
|
ICONS
|
|
|
|
dist/64-pineapple-music.png
|
|
|
|
dist/256-pineapple-music.png
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2024-09-07 12:14:54 +08:00
|
|
|
qt_add_translations(${EXE_NAME}
|
|
|
|
TS_FILES
|
|
|
|
${PMUSIC_TS_FILES}
|
2020-04-06 15:15:13 +08:00
|
|
|
)
|
|
|
|
|
2020-05-27 12:50:49 +08:00
|
|
|
if (NOT TagLib_FOUND)
|
|
|
|
message (WARNING "TagLib not found!")
|
|
|
|
target_compile_definitions(${EXE_NAME} PRIVATE
|
|
|
|
NO_TAGLIB=1
|
|
|
|
)
|
2023-07-05 23:38:22 +08:00
|
|
|
else ()
|
|
|
|
target_link_libraries(${EXE_NAME} PRIVATE PkgConfig::TagLib)
|
2020-05-27 12:50:49 +08:00
|
|
|
endif ()
|
|
|
|
|
2023-07-05 23:38:22 +08:00
|
|
|
target_link_libraries(${EXE_NAME} PRIVATE Qt::Widgets Qt::Multimedia Qt::Network)
|
2020-04-11 23:16:24 +08:00
|
|
|
|
|
|
|
# Extra build settings
|
|
|
|
if (WIN32)
|
|
|
|
set_property (
|
|
|
|
TARGET ${EXE_NAME}
|
|
|
|
PROPERTY WIN32_EXECUTABLE true
|
|
|
|
)
|
|
|
|
endif ()
|
2020-04-08 18:16:45 +08:00
|
|
|
|
|
|
|
# Install settings
|
|
|
|
if (WIN32)
|
|
|
|
# FIXME: try to avoid install to a "bin" subfolder under windows...
|
|
|
|
# when fixed, don't forget to update the CI config file...
|
|
|
|
elseif (UNIX)
|
|
|
|
if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
|
|
|
|
set(CMAKE_INSTALL_PREFIX /usr)
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
# install icon
|
2024-09-08 00:34:45 +08:00
|
|
|
install(
|
2020-04-08 18:16:45 +08:00
|
|
|
FILES icons/app-icon.svg
|
|
|
|
DESTINATION "${CMAKE_INSTALL_DATADIR}/icons/hicolor/48x48/apps"
|
2024-09-08 00:34:45 +08:00
|
|
|
RENAME net.blumia.pineapple-music.svg
|
2020-04-08 18:16:45 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
# install shortcut
|
2024-09-08 00:34:45 +08:00
|
|
|
install(
|
|
|
|
FILES dist/net.blumia.pineapple-music.desktop
|
2020-04-08 18:16:45 +08:00
|
|
|
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/applications"
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set (INSTALL_TARGETS_DEFAULT_ARGS
|
2023-07-05 23:38:22 +08:00
|
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
|
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT Devel
|
2020-04-08 18:16:45 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
install (
|
|
|
|
TARGETS ${EXE_NAME}
|
|
|
|
${INSTALL_TARGETS_DEFAULT_ARGS}
|
|
|
|
)
|