mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
13 lines
385 B
Plaintext
13 lines
385 B
Plaintext
|
#-------------------------------------------------------------
|
||
|
#user computer path settings
|
||
|
#-------------------------------------------------------------
|
||
|
#deploy root
|
||
|
equals(QMAKE_HOST.os, Darwin) {
|
||
|
APP_DEPLOY_ROOT = $$PWD/../..
|
||
|
} else: equals(QMAKE_HOST.os, Linux) {
|
||
|
APP_DEPLOY_ROOT = $$PWD/../..
|
||
|
} else: equals(QMAKE_HOST.os, Windows) {
|
||
|
APP_DEPLOY_ROOT = $$PWD/../..
|
||
|
}
|
||
|
|