Re: [Development] Qmake variable for iOS

2014-02-19 Thread Shobana Suresh
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

Re: [Development] Qmake variable for iOS

2014-02-19 Thread Tor Arne Vestbø
@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

Re: [Development] Qmake variable for iOS

2014-02-17 Thread Gustavsen Richard
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")

Re: [Development] Qmake variable for iOS

2014-02-16 Thread Shobana Suresh
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

Re: [Development] Qmake variable for iOS

2014-02-14 Thread Mohamed Fawzi
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

Re: [Development] Qmake variable for iOS

2014-02-14 Thread Mohamed Fawzi
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

[Development] Qmake variable for iOS

2014-02-09 Thread Shobana Suresh
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.