X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=minitube.pro;h=c38d9f736c2cf515239d39b1ccaeb9ad60939e9a;hb=refs%2Ftags%2Fupstream%2F3.4;hp=2f029bf9c475b3dbeac43c386554d540c1b0d4f9;hpb=e5ab28f93dda6e878973f57276db5edab68d13bc;p=minitube diff --git a/minitube.pro b/minitube.pro index 2f029bf..c38d9f7 100644 --- a/minitube.pro +++ b/minitube.pro @@ -1,6 +1,7 @@ -CONFIG += release +CONFIG += c++14 exceptions_off rtti_off optimize_full + TEMPLATE = app -VERSION = 2.4 +VERSION = 3.4 DEFINES += APP_VERSION="$$VERSION" APP_NAME = Minitube @@ -9,42 +10,45 @@ 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 -DEFINES += APP_YT3 -DEFINES *= QT_NO_DEBUG_OUTPUT -DEFINES *= QT_USE_QSTRINGBUILDER -DEFINES *= QT_STRICT_ITERATORS +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 +} + +DEFINES *= QT_USE_QSTRINGBUILDER QT_STRICT_ITERATORS QT_DEPRECATED_WARNINGS -!contains(DEFINES, APP_GOOGLE_API_KEY) { +!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 += network sql script -qt:greaterThan(QT_MAJOR_VERSION, 4) { - contains(QT, gui): QT *= widgets -} +QT += widgets network sql qml + +include(lib/http/http.pri) +include(lib/idle/idle.pri) + +DEFINES += MEDIA_MPV +include(lib/media/media.pri) include(src/qtsingleapplication/qtsingleapplication.pri) HEADERS += src/video.h \ - src/searchlineedit.h \ - src/urllineedit.h \ + src/messagebar.h \ src/spacer.h \ src/constants.h \ src/playlistitemdelegate.h \ - src/networkaccess.h \ src/videomimedata.h \ - src/global.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 \ @@ -77,7 +81,6 @@ HEADERS += src/video.h \ src/standardfeedsview.h \ src/ytregions.h \ src/ytcategories.h \ - src/ytfeedreader.h \ src/ytsuggester.h \ src/videosourcewidget.h \ src/regionsview.h \ @@ -101,19 +104,26 @@ HEADERS += src/video.h \ src/yt3listparser.h \ src/ytchannel.h \ src/yt3.h \ - src/paginatedvideosource.h + src/paginatedvideosource.h \ + src/searchwidget.h \ + src/channellistview.h \ + src/httputils.h \ + src/appwidget.h \ + src/clickablelabel.h \ + src/ytvideo.h \ + src/toolbarmenu.h \ + src/sharetoolbar.h \ + src/videoarea.h \ + src/searchlineedit.h SOURCES += src/main.cpp \ - src/searchlineedit.cpp \ - src/urllineedit.cpp \ + src/messagebar.cpp \ src/spacer.cpp \ src/video.cpp \ src/videomimedata.cpp \ src/updatechecker.cpp \ - src/networkaccess.cpp \ src/searchparams.cpp \ src/minisplitter.cpp \ src/loadingwidget.cpp \ - src/videoareawidget.cpp \ src/autocomplete.cpp \ src/videodefinition.cpp \ src/constants.cpp \ @@ -146,7 +156,6 @@ SOURCES += src/main.cpp \ src/standardfeedsview.cpp \ src/ytregions.cpp \ src/ytcategories.cpp \ - src/ytfeedreader.cpp \ src/ytsuggester.cpp \ src/videosourcewidget.cpp \ src/regionsview.cpp \ @@ -170,8 +179,20 @@ SOURCES += src/main.cpp \ src/yt3listparser.cpp \ src/ytchannel.cpp \ src/yt3.cpp \ - src/paginatedvideosource.cpp + src/paginatedvideosource.cpp \ + src/channellistview.cpp \ + src/httputils.cpp \ + src/appwidget.cpp \ + src/clickablelabel.cpp \ + src/ytvideo.cpp \ + src/toolbarmenu.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/ @@ -180,31 +201,32 @@ 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 { - qt:greaterThan(QT_MAJOR_VERSION, 4) { - LIBS += -lphonon4qt5 - INCLUDEPATH += /usr/include/phonon4qt5 - } else { - QT += phonon - INCLUDEPATH += /usr/include/phonon - } + DEFINES += APP_LINUX 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 \ icon16 \ icon22 \ @@ -216,8 +238,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 iconsvg.path = $$DATADIR/icons/hicolor/scalable/apps iconsvg.files += data/minitube.svg icon16.path = $$DATADIR/icons/hicolor/16x16/apps @@ -237,7 +263,10 @@ 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) -OTHER_FILES += \ - sounds/snapshot.wav +message(CONFIG: $$CONFIG) +message(DEFINES: $$DEFINES) +message(QMAKE_CXXFLAGS: $$QMAKE_CXXFLAGS) +message(QMAKE_LFLAGS: $$QMAKE_LFLAGS)