Felipe Rocha
Felipe Rocha

Reputation: 143

How to import an existing c++ project to XCode8?

I have a c++ project that I'd like to import to XCode8 for the sole purpose of having access to a better debugger.

Does anyone know how to do the import?

Upvotes: 1

Views: 494

Answers (1)

ruipacheco
ruipacheco

Reputation: 16422

Use CMake to generate an Xcode project:

cmake -GXcode .

Upvotes: 2

Related Questions