在我的项目中,我有这个标题:
src/thread/Semaphore.h
在我的设置中,我将src作为include文件夹(但不是直接src / thread)。然而,当我尝试:
#include <semaphore.h>
要将文件包含在/usr/include/semaphore.h中,Xcode会改为包含src / thread / Semaphore.h。当我从项目中删除文件时问题就消失了(我没有移动到垃圾箱,只是删除引用,所以我仍然可以包含#include“thread / Semaphore.h”),但这似乎是一个丑陋的解决方法。
如何防止Xcode递归添加包括dirs?