avoid qmake warning

This commit is contained in:
Uwe Rathmann 2022-04-22 07:44:32 +02:00
parent 8039ebd785
commit 3f818470e8

View File

@ -175,11 +175,14 @@ debug {
LOCAL_PRI=$$(QSK_LOCAL_PRI)
if ( exists( $${LOCAL_PRI} ) ) {
if ( !isEmpty( LOCAL_PRI ) ) {
# When not working with the Qt/Creator it is often more convenient
# to include the specific options of your local build, than passing
# them all on the command line
if ( exists( $${LOCAL_PRI} ) ) {
include( $${LOCAL_PRI} )
# When not working with the Qt/Creator it is often more convenient
# to include the specific options of your local build, than passing
# them all on the command line
include( $${LOCAL_PRI} )
}
}