Files
qcma/cli/cli.pro
codestation b6eebd79b1 Use ffmpeg for thumbnail support.
Removed dep on QtGui for the headless modules.
2015-05-26 23:34:13 -04:30

28 lines
567 B
Prolog

include(../config.pri)
include(../common/defines.pri)
TARGET = qcma_cli
TEMPLATE += app
QT += network sql core
QT -= gui
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
}