yttui/yt-tool-tui.pro

30 lines
514 B
Prolog
Raw Normal View History

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 += \
db.cpp \
2020-11-22 15:17:14 +00:00
main.cpp \
tui.cpp \
yt.cpp
HEADERS += \
db.h \
2020-11-22 15:17:14 +00:00
tui.h \
yt.h
unix: CONFIG += link_pkgconfig
unix: PKGCONFIG += libcurl sqlite3 nlohmann_json
2020-11-26 19:23:35 +00:00
DISTFILES += \
README.md \
yttui.conf.example