35 lines
629 B
Prolog
35 lines
629 B
Prolog
QT += nfc widgets
|
|
requires(qtConfig(filedialog))
|
|
|
|
TARGET = ndefeditor
|
|
TEMPLATE = app
|
|
|
|
SOURCES += \
|
|
main.cpp \
|
|
mainwindow.cpp \
|
|
textrecordeditor.cpp \
|
|
urirecordeditor.cpp \
|
|
mimeimagerecordeditor.cpp
|
|
|
|
HEADERS += \
|
|
mainwindow.h \
|
|
textrecordeditor.h \
|
|
urirecordeditor.h \
|
|
mimeimagerecordeditor.h
|
|
|
|
FORMS += \
|
|
mainwindow.ui \
|
|
textrecordeditor.ui \
|
|
urirecordeditor.ui \
|
|
mimeimagerecordeditor.ui
|
|
|
|
android {
|
|
ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android
|
|
|
|
DISTFILES += \
|
|
android/AndroidManifest.xml
|
|
}
|
|
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/nfc/ndefeditor
|
|
INSTALLS += target
|