防止 Xcode 6.3 在使用项目模板时链接默认库和 headers

Prevent Xcode 6.3 from linking default libraries and headers when using project templates

我正在 Xcode 6.3 中构建一个项目。我基于 command line tool 项目模板。是否有可能排除自动添加的此类路径和来源的库,例如 curses.h?
这里的路径: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk/usr/include/curses.h

我在哪里可以更改项目目标中加载的默认库的 inclusion/exclusion 默认设置?

感谢您的任何提示,因为很难在网上找到有关它的信息。

事实证明,您可以在 Xcode 的 Build Settings:

中轻松禁用所有附加模块

构建设置 > Apple LLVM 6.1 - 语言 - 模块 > 启用模块(C 和 Objective-C)

并将其设置为

(Thomas Dickey 在此处发布了更广泛的答案: