2020-11-22 15:17:14 +00:00
|
|
|
TEMPLATE = app
|
2020-11-22 23:03:04 +00:00
|
|
|
CONFIG += console c++17
|
2020-11-22 15:17:14 +00:00
|
|
|
CONFIG -= app_bundle
|
|
|
|
CONFIG -= qt
|
|
|
|
|
|
|
|
unix:!macx: LIBS += -L$$PWD/termpaint/ -ltermpaint
|
|
|
|
|
|
|
|
INCLUDEPATH += $$PWD/termpaint
|
|
|
|
DEPENDPATH += $$PWD/termpaint
|
|
|
|
|
|
|
|
unix:!macx: PRE_TARGETDEPS += $$PWD/termpaint/libtermpaint.a
|
|
|
|
|
|
|
|
SOURCES += \
|
2020-11-22 18:18:45 +00:00
|
|
|
db.cpp \
|
2020-11-22 15:17:14 +00:00
|
|
|
main.cpp \
|
|
|
|
tui.cpp \
|
|
|
|
yt.cpp
|
|
|
|
|
|
|
|
HEADERS += \
|
2020-11-22 18:18:45 +00:00
|
|
|
db.h \
|
2020-11-22 15:17:14 +00:00
|
|
|
tui.h \
|
|
|
|
yt.h
|
|
|
|
|
|
|
|
unix: CONFIG += link_pkgconfig
|
|
|
|
unix: PKGCONFIG += libcurl sqlite3 nlohmann_json
|