2017-09-05 18:07:05 +08:00
|
|
|
#-------------------------------------------------
|
|
|
|
#
|
|
|
|
# Project created by QtCreator 2016-09-30T09:34:03
|
|
|
|
#
|
|
|
|
#-------------------------------------------------
|
2017-11-22 19:22:53 +08:00
|
|
|
QT += core gui
|
|
|
|
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
|
|
|
|
TARGET = cmdwidget
|
|
|
|
TEMPLATE = app
|
|
|
|
|
|
|
|
|
|
|
|
SOURCES += main.cpp\
|
|
|
|
cmdwidget.cpp \
|
|
|
|
rlineedit.cpp
|
|
|
|
|
|
|
|
HEADERS += cmdwidget.h \
|
|
|
|
rlineedit.h
|
|
|
|
|
|
|
|
FORMS += cmdwidget.ui
|
|
|
|
|
|
|
|
include($$PWD/../../examples/qqtframe2/link_qqt_library.pri)
|
2017-10-29 22:57:41 +08:00
|
|
|
|
|
|
|
############
|
|
|
|
##install
|
|
|
|
############
|
|
|
|
#CONFIG += can_install
|
|
|
|
can_install:equals(QKIT_PRIVATE, EMBEDDED) {
|
|
|
|
target.path = /Application
|
|
|
|
INSTALLS += target
|
|
|
|
} else: unix {
|
|
|
|
equals(QKIT_PRIVATE, macOS) {
|
|
|
|
target.path = /Applications
|
|
|
|
INSTALLS += target
|
|
|
|
}
|
2017-10-23 11:18:52 +08:00
|
|
|
}
|
2017-09-05 18:07:05 +08:00
|
|
|
|
2017-10-29 22:57:41 +08:00
|
|
|
equals(QKIT_PRIVATE, ANDROID) {
|
|
|
|
CONFIG += mobility
|
|
|
|
MOBILITY =
|
|
|
|
}
|
|
|
|
|
|
|
|
#################################################################
|
|
|
|
##project environ
|
|
|
|
#################################################################
|
|
|
|
#default
|
|
|
|
message ($${TARGET} config $${CONFIG})
|
|
|
|
message ($${TARGET} define $${DEFINES})
|
|
|
|
|