Reputation: 71
Is it possible to use GNU make
in Xcode 4? It's said that Xcode supports GNU make
but I can't find it anywhere.
Upvotes: 3
Views: 2460
Reputation: 213190
When you create a new project you need to select Mac OS X
=> Other
=> External Build System
. This will let you use make
or any other build system to integrate legacy or cross-platform code into Xcode. It's not as clean as using a native project, but it works. A better solution might be to use CMake if you need cross-platform support including native Xcode projects.
Upvotes: 4