Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将 xcodeprojfile 放在与我的外部构建目标的 Makefile 相同的目录中,而不使用目录位置的绝对路径。那可能吗?
事实证明,答案是肯定的! 首先,将您的 .xcodeproj 文件复制到与您的 makefile 相同的目录中。 然后在项目中添加对你的makefile的引用(确保你有一个makefile.in和一个makefile,makefile.in在项目项列表中的makefile之上。) 然后你需要设置外部构建源目录到 . 在哪里。表示当前目录。 我的项目构建得很好!