Reputation: 143
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
Reputation: 16422
Use CMake to generate an Xcode project:
cmake -GXcode .
Upvotes: 2