Philip Kirkbride
Philip Kirkbride

Reputation: 22879

Building Qt for iOS

I'm trying to go through the following tutorial to get a simple sample Qt app running on the iOS simulator.

https://www.qt.io/blog/2013/03/05/qt-for-ios-preview

I get to step 3 and run the following commmand

./configure -xplatform unsupported/macx-ios-clang -developer-build -nomake examples -nomake tests -release [-sdk iphonesimulator]

I get back the following

[-sdk: unknown argument iphonesimulator]: unknown argument

Note: I'm on a mac with XCode installed

Upvotes: 0

Views: 1099

Answers (2)

jay
jay

Reputation: 507

the -sdk values come from $ xcodebuild -showsdks

Upvotes: 1

Nicholas Smith
Nicholas Smith

Reputation: 11754

[-sdk iphonesimulator] didn't work for me, I had to strip the brackets off.

Upvotes: 1

Related Questions