Reputation: 225
What I am trying to do is to create a graphic user interface for a program which I coded in Xcode, so my question is, how can I import the file in QtCreator and create a guy. I've tried New Project->Import->Import existing project but I can not build it I get
"No rule to target 'all'. Stop."
However when i create a new qt empty project I am able to build and run it, cand somebody help me please? Thanks a lot!
Upvotes: 0
Views: 1433
Reputation: 1592
XCode keeps project settings in special format (property list, deprecated OpenSTEP variant), which QtCreator cannot read. Fortunately, XCode provides utility 'xcodebuild', it can build *.xcodeproj correctly.
Add new step "Custom Process Step" and call xcodebuild with working directory "%{sourceDir}"
Upvotes: 3