WestCoastProjects
WestCoastProjects

Reputation: 63062

Opening a project in AppCode

I just downloaded and am trying out AppCode (but am a veteran user of multiple other JetBrains Ide's..) I have tried to open a few different projects but nothing happens.

An example is tensorflow/swift-models/Examples/BERT-CoLa

enter image description here

I click on Open but then nothing happens: we end up back here:

enter image description here

So either AppCode behaves differently than all of its other JetBrains friends or something is broken (and I do not know what that something is)

Any pointers?

Upvotes: 1

Views: 1057

Answers (1)

Stanislav Dombrovsky
Stanislav Dombrovsky

Reputation: 752

AppCode won't open just a folder - it needs .xcodeproj or .xcworkspace in this folder, e.g. regular Xcode project. Other project models (such as CMake or pure SwiftPM projects without the generated Xcode project) are not supported.

Upvotes: 5

Related Questions