xt("Phone");
>
> #endif
>
> msgBox.exec();
>
> }
>
>
> Thanks
>
> Shobana
>
>
> From: Mohamed Fawzi mailto:fawzi.moha...@digia.com%0b>> <mailto:fawzi.moha...@digia.com>>
> Date: Sat, 15 Feb 2014 01:36:31 +1100
> To: Shobana
@digia.com>>
> Date: Sat, 15 Feb 2014 01:36:31 +1100
> To: Shobana Suresh mailto:ssur...@esri.com>>
> Cc: "development@qt-project.org <mailto:development@qt-project.org>"
> mailto:development@qt-project.org>>
> Subject: Re: [Development] Qmake variabl
project.org
Emne: Re: [Development] Qmake variable for iOS
Hi Fawzi,
Thanks for the explanation.
You are right. Though the message is misleading, it appears to work.
I tried the below simple test and it worked as expected.
App1.pro:
ios {
iphonesimulator {
message("iphonesimulator")
t;Phone");
#endif
msgBox.exec();
}
Thanks
Shobana
From: Mohamed Fawzi mailto:fawzi.moha...@digia.com>>
Date: Sat, 15 Feb 2014 01:36:31 +1100
To: Shobana Suresh mailto:ssur...@esri.com>>
Cc: "development@qt-project.org<mailto:development@qt-project.org>"
mailto:develo
Hi,
qmake for ios is a bit strange, in the sense that it treats device and
simulator as two build versions.
This is like debug and release, setting it in CONFIG sets the default used in
Makefile, but it also still generates specific makefiles for each possible
combination (iphoneos debug/relas
Hi,
qmake for ios is a bit strange, in the sense that it treats device and
simulator as two build versions.
This is like debug and release, setting it in CONFIG sets the default used in
Makefile, but it also still generates specific makefiles for each possible
combination (iphoneos debug/relas
Hello All,
I am trying to find the qmake variable that could be used to differentiate
between the iPhone simulator and iPhone arm kits.
In my .pro file, I would like to use conditions like
1.
ios {
2.
CONFIG += c++11
3.
iphonesimulator {
4.
message("iphonesimulator")
5.