mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-13 20:06:34 +02:00
31 lines
444 B
Prolog
31 lines
444 B
Prolog
TEMPLATE = app
|
|
|
|
QT += qml quick widgets
|
|
|
|
HEADERS += \
|
|
filter.h \
|
|
clipboardAdapter.h
|
|
|
|
|
|
SOURCES += main.cpp \
|
|
filter.cpp \
|
|
clipboardAdapter.cpp
|
|
|
|
CONFIG(release, debug|release) {
|
|
DESTDIR=release
|
|
}
|
|
|
|
CONFIG(debug, debug|release) {
|
|
DESTDIR=debug
|
|
}
|
|
|
|
|
|
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)
|
|
|