Breakpoints do not work if debug the app inside of app bundle.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2017-12-11 15:52:24 +02:00
parent a8e9128282
commit 931c0de439
2 changed files with 8 additions and 0 deletions

View File

@ -306,6 +306,10 @@ CONFIG(release, debug|release){
QMAKE_LFLAGS_RELEASE =
}
}
} else {
# Breakpoints do not work if debug the app inside of bundle. In debug mode we turn off creating a bundle.
# Probably it will breake some dependencies. Version for Mac designed to work inside an app bundle.
CONFIG -= app_bundle
}
DVCS_HESH=$$FindBuildRevision()

View File

@ -89,6 +89,10 @@ CONFIG(release, debug|release){
QMAKE_LFLAGS_RELEASE =
}
}
} else {
# Breakpoints do not work if debug the app inside of bundle. In debug mode we turn off creating a bundle.
# Probably it will breake some dependencies. Version for Mac designed to work inside an app bundle.
CONFIG -= app_bundle
}
DVCS_HESH=$$FindBuildRevision()