mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
60 lines
1.6 KiB
Plaintext
60 lines
1.6 KiB
Plaintext
#-------------------------------------------------
|
|
#install app
|
|
#-------------------------------------------------
|
|
#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
|
|
}
|
|
}
|
|
|
|
############
|
|
##config defination
|
|
############
|
|
equals(QKIT_PRIVATE, macOS) {
|
|
CONFIG += app_bundle
|
|
}
|
|
|
|
contains(QKIT_PRIVATE, Android|AndroidX86) {
|
|
CONFIG += mobility
|
|
MOBILITY =
|
|
DISTFILES += \
|
|
android/AndroidManifest.xml
|
|
|
|
ANDROID_PACKAGE_SOURCE_DIR = $${PWD}/android
|
|
}
|
|
|
|
################################################################
|
|
##build cache
|
|
################################################################
|
|
OBJECTS_DIR = obj
|
|
MOC_DIR = obj/moc.cpp
|
|
UI_DIR = obj/ui.h
|
|
RCC_DIR = qrc
|
|
DESTDIR = bin
|
|
|
|
################################################################
|
|
##link QQt
|
|
################################################################
|
|
include(../../src/qqt_library.pri)
|
|
|
|
################################################################
|
|
##link Other library
|
|
################################################################
|
|
|
|
################################################################
|
|
##deploy app for install update deploy
|
|
################################################################
|
|
include(app_deploy.pri)
|
|
|
|
#-------------------------------------------------
|
|
##project environ print
|
|
#-------------------------------------------------
|
|
#default
|
|
message ($${TARGET} config $${CONFIG})
|
|
message ($${TARGET} define $${DEFINES})
|