Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions youtube/youtube.pro
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ greaterThan(QT_MAJOR_VERSION, 5): QT += widgets

TARGET = youtube
TEMPLATE = lib
CONFIG += plugin

isEmpty(LIBDIR) {
LIBDIR=/usr/lib
}

target.path = $${LIBDIR}/qmmp/Transports

INCLUDEPATH += /usr/include/python3.6m
unix:LIBS += -lqmmp -lqmmpui -lqjson -lPythonQt -lcurl
Expand All @@ -29,3 +36,5 @@ HEADERS += \
youtubestreamreader.h \
youtubedl.h \
youtubeapi.h

INSTALLS += target
8 changes: 8 additions & 0 deletions youtubeui/youtubeui.pro
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ greaterThan(QT_MAJOR_VERSION, 5): QT += widgets

TARGET = youtubeui
TEMPLATE = lib
CONFIG += plugin

isEmpty(LIBDIR) {
LIBDIR=/usr/lib
}

target.path = $${LIBDIR}/qmmp/General

unix:LIBS += -lqmmp -lqmmpui -lqjson

Expand All @@ -32,3 +39,4 @@ HEADERS += youtubewindow.h \
FORMS += youtubewindow.ui \
youtubepreferences.ui

INSTALLS += target