I need to put the xcodeprojfile in the same dir as the Makefile for my External Build Target without using an absolute path for the Directory location. Is that possible?
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.
As it turns out, the answer is yes!
First, copy your .xcodeproj file into the same directory as your makefile.
Then add a reference to your makefile to the project (make sure if you have a makefile.in and a makefile, that the makefile.in is above the makefile in the list of project items.)
Then you need to set the external build source directory to . where the . represents the current directory.
My project builds just fine!