X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=minitube.pro;h=71420f3121d6789d22d86592ebafefad0bea293e;hb=fe9d17324e88a65d4f28afccf21857c5a5e60649;hp=453cf15f4b30093ec6ee02eb922a44ee165ec174;hpb=f7c2427db0b00cbb4dadd75420ce60aee8e0d490;p=minitube diff --git a/minitube.pro b/minitube.pro index 453cf15..71420f3 100644 --- a/minitube.pro +++ b/minitube.pro @@ -1,7 +1,7 @@ -CONFIG += release c++11 -CONFIG -= rtti exceptions +CONFIG += c++17 exceptions_off rtti_off object_parallel_to_source + TEMPLATE = app -VERSION = 2.9 +VERSION = 3.9.1 DEFINES += APP_VERSION="$$VERSION" APP_NAME = Minitube @@ -10,40 +10,56 @@ DEFINES += APP_NAME="$$APP_NAME" APP_UNIX_NAME = minitube DEFINES += APP_UNIX_NAME="$$APP_UNIX_NAME" -DEFINES += APP_PHONON -DEFINES += APP_PHONON_SEEK -DEFINES += APP_SNAPSHOT - message(Building $${APP_NAME} $${VERSION}) message(Qt $$[QT_VERSION] in $$[QT_INSTALL_PREFIX]) -DEFINES *= QT_NO_DEBUG_OUTPUT -DEFINES *= QT_USE_QSTRINGBUILDER -DEFINES *= QT_STRICT_ITERATORS +DEFINES += APP_SNAPSHOT -!contains(DEFINES, APP_GOOGLE_API_KEY=.+) { - warning("You need to specify a Google API Key, refer to the README.md file for details") +CONFIG -= debug_and_release +CONFIG(debug, debug|release): { + message(Building for debug) +} +CONFIG(release, debug|release): { + message(Building for release) + DEFINES *= QT_NO_DEBUG_OUTPUT + CONFIG += optimize_full } +DEFINES *= QT_USE_QSTRINGBUILDER QT_STRICT_ITERATORS QT_DEPRECATED_WARNINGS + +#!contains(DEFINES, APP_GOOGLE_API_KEY=.+) { +# warning("You need to specify a Google API Key, refer to the README.md file for details") +#} + TARGET = $${APP_UNIX_NAME} QT += widgets network sql qml +include(lib/http/http.pri) +include(lib/idle/idle.pri) +include(lib/js/js.pri) +include(lib/promises/promises.pri) + +DEFINES += MEDIA_MPV +include(lib/media/media.pri) + include(src/qtsingleapplication/qtsingleapplication.pri) -include(src/http/http.pri) -include(src/idle/idle.pri) +include(src/yt/yt.pri) + +INCLUDEPATH += $$PWD/src HEADERS += src/video.h \ - src/searchlineedit.h \ + src/messagebar.h \ src/spacer.h \ src/constants.h \ src/playlistitemdelegate.h \ + src/subscriptionimportview.h \ + src/updateutils.h \ + src/videoapi.h \ src/videomimedata.h \ - src/updatechecker.h \ src/searchparams.h \ src/minisplitter.h \ src/loadingwidget.h \ - src/videoareawidget.h \ src/autocomplete.h \ src/videodefinition.h \ src/fontutils.h \ @@ -71,6 +87,7 @@ HEADERS += src/video.h \ src/view.h \ src/playlistmodel.h \ src/videosource.h \ + src/waitingspinnerwidget.h \ src/ytsearch.h \ src/ytstandardfeed.h \ src/standardfeedsview.h \ @@ -101,24 +118,25 @@ HEADERS += src/video.h \ src/yt3.h \ src/paginatedvideosource.h \ src/searchwidget.h \ - src/exlineedit.h \ src/channellistview.h \ src/httputils.h \ src/appwidget.h \ src/clickablelabel.h \ src/ytvideo.h \ src/toolbarmenu.h \ - src/sharetoolbar.h + src/sharetoolbar.h \ + src/videoarea.h \ + src/searchlineedit.h SOURCES += src/main.cpp \ - src/searchlineedit.cpp \ + src/messagebar.cpp \ src/spacer.cpp \ + src/subscriptionimportview.cpp \ + src/updateutils.cpp \ src/video.cpp \ src/videomimedata.cpp \ - src/updatechecker.cpp \ src/searchparams.cpp \ src/minisplitter.cpp \ src/loadingwidget.cpp \ - src/videoareawidget.cpp \ src/autocomplete.cpp \ src/videodefinition.cpp \ src/constants.cpp \ @@ -146,6 +164,7 @@ SOURCES += src/main.cpp \ src/playlistitemdelegate.cpp \ src/playlistmodel.cpp \ src/videosource.cpp \ + src/waitingspinnerwidget.cpp \ src/ytsearch.cpp \ src/ytstandardfeed.cpp \ src/standardfeedsview.cpp \ @@ -175,15 +194,19 @@ SOURCES += src/main.cpp \ src/ytchannel.cpp \ src/yt3.cpp \ src/paginatedvideosource.cpp \ - src/exlineedit.cpp \ src/channellistview.cpp \ src/httputils.cpp \ src/appwidget.cpp \ src/clickablelabel.cpp \ src/ytvideo.cpp \ src/toolbarmenu.cpp \ - src/sharetoolbar.cpp + src/sharetoolbar.cpp \ + src/videoarea.cpp \ + src/searchlineedit.cpp + RESOURCES += resources.qrc +RESOURCES += $$files(icons/*.png, true) + DESTDIR = build/target/ OBJECTS_DIR = build/obj/ MOC_DIR = build/moc/ @@ -192,26 +215,30 @@ RCC_DIR = build/rcc/ # Tell Qt Linguist that we use UTF-8 strings in our sources CODECFORTR = UTF-8 CODECFORSRC = UTF-8 + include(locale/locale.pri) # deploy DISTFILES += CHANGES COPYING unix:!mac { DEFINES += APP_LINUX - LIBS += -lphonon4qt5 - INCLUDEPATH += /usr/include/phonon4qt5 QT += dbus HEADERS += src/gnomeglobalshortcutbackend.h SOURCES += src/gnomeglobalshortcutbackend.cpp + isEmpty(PREFIX):PREFIX = /usr + BINDIR = $$PREFIX/bin INSTALLS += target target.path = $$BINDIR + DATADIR = $$PREFIX/share PKGDATADIR = $$DATADIR/minitube DEFINES += DATADIR=\\\"$$DATADIR\\\" \ PKGDATADIR=\\\"$$PKGDATADIR\\\" + INSTALLS += translations \ + sounds \ desktop \ appdata \ iconsvg \ @@ -225,10 +252,12 @@ unix:!mac { icon512 translations.path = $$PKGDATADIR translations.files += $$DESTDIR/locale + sounds.path = $$PKGDATADIR + sounds.files += sounds/ desktop.path = $$DATADIR/applications desktop.files += minitube.desktop - appdata.path = $$DATADIR/appdata - appdata.files += minitube.appdata.xml + appdata.path = $$DATADIR/metainfo + appdata.files += org.tordini.flavio.minitube.metainfo.xml iconsvg.path = $$DATADIR/icons/hicolor/scalable/apps iconsvg.files += data/minitube.svg icon16.path = $$DATADIR/icons/hicolor/16x16/apps @@ -248,4 +277,11 @@ unix:!mac { icon512.path = $$DATADIR/icons/hicolor/512x512/apps icon512.files += data/512x512/minitube.png } + mac|win32|contains(DEFINES, APP_UBUNTU):include(local/local.pri) + +message(QT: $$QT) +message(CONFIG: $$CONFIG) +message(DEFINES: $$DEFINES) +message(QMAKE_CXXFLAGS: $$QMAKE_CXXFLAGS) +message(QMAKE_LFLAGS: $$QMAKE_LFLAGS)