On Mon, May 14, 2012 at 01:21:58PM -0700, Mohammad Mirzadeh wrote:
> Hi,
>
> TO automate my configuration file, I have included
>
> debug {
> SOFT_ARCH=$$(SOFT_ARCH_DEBUG)
> } release {
> SOFT_ARCH=$$(SOFT_ARCH_OPT)
> }
Try
CONFIG(debug, debug|release) {
SOFT_ARCH=$$(SOFT_ARCH_DEBUG)
}
CONFIG(release, debug|release) {
SOFT_ARCH=$$(SOFT_ARCH_OPT)
}
Andre'
_______________________________________________
Qt-creator mailing list
[email protected]
http://lists.qt-project.org/mailman/listinfo/qt-creator