2014-07-07 20:08:30 +03:00
|
|
|
TEMPLATE = app
|
|
|
|
|
|
|
|
QT += qml quick widgets
|
|
|
|
|
2016-01-25 20:36:33 +02:00
|
|
|
HEADERS += \
|
|
|
|
filter.h \
|
|
|
|
clipboardAdapter.h
|
|
|
|
|
|
|
|
|
2014-07-07 20:08:30 +03:00
|
|
|
SOURCES += main.cpp \
|
2014-07-16 15:40:09 +03:00
|
|
|
filter.cpp \
|
|
|
|
clipboardAdapter.cpp
|
2014-07-07 20:08:30 +03:00
|
|
|
|
2016-01-25 20:36:33 +02:00
|
|
|
CONFIG(release, debug|release) {
|
|
|
|
DESTDIR=release
|
|
|
|
}
|
|
|
|
|
|
|
|
CONFIG(debug, debug|release) {
|
|
|
|
DESTDIR=debug
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-07-07 20:08:30 +03:00
|
|
|
RESOURCES += qml.qrc
|
|
|
|
|
|
|
|
# Additional import path used to resolve QML modules in Qt Creator's code model
|
|
|
|
QML_IMPORT_PATH =
|
|
|
|
|
|
|
|
# Default rules for deployment.
|
|
|
|
include(deployment.pri)
|
|
|
|
|
2016-01-25 20:36:33 +02:00
|
|
|
# copy language files (xml and images) to the output directory
|
|
|
|
copydata.commands = $(COPY_DIR) $$shell_path($$PWD/lang) $$shell_path($$DESTDIR/lang)
|
|
|
|
QMAKE_EXTRA_TARGETS += copydata
|
|
|
|
POST_TARGETDEPS += copydata
|