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.
Is it possible to use GNU make in Xcode 4? It’s said that Xcode
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
When you create a new project you need to select
Mac OS X=>Other=>External Build System. This will let you usemakeor 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.