mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
109 lines
3.5 KiB
Plaintext
109 lines
3.5 KiB
Plaintext
#--------------------------------------------------------------------------------
|
||
#lib_multi_link_technology.pri
|
||
|
||
##Multi-link technology (Multi Link technology)
|
||
##Multi-link 技术,支持多链接库增删的一门工程管理技术。
|
||
|
||
#default sdk root is qqt-source/..
|
||
#user can modify this path in user_config_path()/app_configure.pri, then it will be included here.
|
||
#at qqt_library.pri, create_qqt_sdk and link_from_sdk will need this.
|
||
#this is different in every operating system
|
||
#qqt_library.pri need this configure
|
||
|
||
#这个文件用来加载用户电脑上的应用程序公共环境
|
||
#Windows: C:\\Users\\xxx\\.qmake\\app_configure.pri
|
||
#Mac OS X: /Users/xxx/.qmake/app_configure.pri
|
||
#Ubuntu: /home/xxx/.qmake/app_configure.pri
|
||
#公共路径:应用编译路径、LibrarySDK路径、产品输出路径
|
||
#Multi-link技术只能应用于Qt5,Qt4没有windeployqt程序。
|
||
|
||
#--------------------------------------------------------------------------------
|
||
|
||
#废弃
|
||
#这个pri依赖qqt_function.pri
|
||
#qqt_function.pri,哪里需要就在哪里包含。
|
||
#equals(QMAKE_HOST.os, Windows) {
|
||
# include ($${PWD}\\..\\src\\qqt_function.pri)
|
||
#} else {
|
||
# include ($${PWD}/../src/qqt_function.pri)
|
||
#}
|
||
|
||
defineReplace(get_user_home) {
|
||
command =
|
||
equals(QMAKE_HOST.os, Windows) {
|
||
command = echo %HOMEDRIVE%%HOMEPATH%
|
||
} else {
|
||
command = echo $HOME
|
||
}
|
||
#message ($$command)
|
||
return ($$command)
|
||
}
|
||
|
||
defineReplace(get_user_config_path) {
|
||
command =
|
||
#windows下编译android工程,qmake CONFIG里面不包含win32而是android、linux、unix。
|
||
#win32 只有在目标是win32的时候才会在CONFIG里面出现。开发平台用QMAKE_HOST.os
|
||
#注意:qmake在windows平台下,无论目标,明令行一律按照windows控制台风格。不以目标区分,Attention!。
|
||
#win32 {
|
||
equals(QMAKE_HOST.os, Windows) {
|
||
command = echo %APPDATA%
|
||
} else {
|
||
command = echo $HOME
|
||
}
|
||
#message ($$command)
|
||
return ($$command)
|
||
}
|
||
defineReplace(user_home) {
|
||
command = $$get_user_home()
|
||
echo = $$system("$${command}")
|
||
#message($$command)
|
||
#message($$echo)
|
||
return ($${echo})
|
||
}
|
||
|
||
defineReplace(user_config_path) {
|
||
command = $$get_user_config_path()
|
||
echo = $$system("$${command}")
|
||
#message($$command)
|
||
#message($$echo)
|
||
return ($${echo})
|
||
}
|
||
|
||
|
||
CONFIG_PATH =
|
||
CONFIG_FILE =
|
||
|
||
equals(QMAKE_HOST.os, Windows) {
|
||
#>=v2.4
|
||
CONFIG_PATH = $$user_home()\\.qmake
|
||
#CONFIG_PATH = $$user_config_path()\\qmake
|
||
CONFIG_FILE = $${CONFIG_PATH}\\app_configure.pri
|
||
} else {
|
||
CONFIG_PATH = $$user_config_path()/.qmake
|
||
CONFIG_FILE = $${CONFIG_PATH}/app_configure.pri
|
||
}
|
||
|
||
!exists($${CONFIG_FILE}) {
|
||
mkdir("$${CONFIG_PATH}")
|
||
empty_file($${CONFIG_FILE})
|
||
ret = $$system(echo QQT_SDK_ROOT = > $${CONFIG_FILE})
|
||
ret = $$system(echo QQT_BUILD_ROOT = >> $${CONFIG_FILE})
|
||
ret = $$system(echo APP_DEPLOY_ROOT = >> $${CONFIG_FILE})
|
||
}
|
||
|
||
#your must config this file! following readme!
|
||
include ($${CONFIG_FILE})
|
||
|
||
#qqt build root, build station root
|
||
#link_from_build will need this path.
|
||
isEmpty(QQT_BUILD_ROOT)|isEmpty(QQT_SDK_ROOT) {
|
||
message($${TARGET} multipal link config file: $${CONFIG_FILE})
|
||
message("QQT_BUILD_ROOT = is required, please modify $${CONFIG_FILE}")
|
||
message("QQT_SDK_ROOT = is required")
|
||
message("APP_DEPLOY_ROOT = is required [optional]")
|
||
message("[linux platform, ]this pri is under app_multi_link_config.pri")
|
||
error("please check $$CONFIG_FILE")
|
||
}
|
||
message(QQt build root: $$QQT_BUILD_ROOT)
|
||
message(QQt sdk root: $$QQT_SDK_ROOT)
|