Files
qcma/qcma_cli.pro
codestation 22395a71ac Moved manpages seections to (1) as they aren't games.
Install manpages via qmake.
2015-03-15 00:11:30 -04:30

27 lines
496 B
Prolog

include(qcma_common.pri)
TARGET = qcma_cli
SOURCES += \
src/cli/main_cli.cpp \
src/cli/singlecoreapplication.cpp \
src/cli/headlessmanager.cpp
HEADERS += \
src/cli/singlecoreapplication.h \
src/cli/headlessmanager.h
# Linux-only config
unix:!macx {
DATADIR = $$PREFIX/share
MANDIR = $$DATADIR/man/man1
man_cli.files = man/qcma_cli.1
man_cli.path = $$MANDIR
target.path = $$BINDIR
INSTALLS += target man_cli
}