27 lines
552 B
Prolog
27 lines
552 B
Prolog
include(../config.pri)
|
|
include(../common/defines.pri)
|
|
|
|
TARGET = qcma_cli
|
|
TEMPLATE += app
|
|
QT += network sql
|
|
LIBS += -L../common -lqcma_common
|
|
|
|
SOURCES += \
|
|
main_cli.cpp \
|
|
singlecoreapplication.cpp \
|
|
headlessmanager.cpp
|
|
|
|
HEADERS += \
|
|
singlecoreapplication.h \
|
|
headlessmanager.h
|
|
|
|
PKGCONFIG = libvitamtp libavformat libavcodec libavutil libswscale
|
|
|
|
# Linux-only config
|
|
unix:!macx {
|
|
man_cli.files = qcma_cli.1
|
|
man_cli.path = $$MANDIR
|
|
target.path = $$BINDIR
|
|
INSTALLS += target man_cli
|
|
}
|