How to add a global include path for xcode - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T16:32:34Z http://stackoverflow.com/feeds/question/749027 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/749027/how-to-add-a-global-include-path-for-xcode 1 How to add a global include path for xcode Jesse Beder 2009-04-14T19:30:58Z 2009-04-15T17:27:57Z <p>I'd like to add ~/include to my include path for <em>all</em> projects while using Xcode, something like setting the environment variable <code>CPLUS_INCLUDE_PATH</code> in Linux. (See <a href="http://stackoverflow.com/questions/558803/how-to-add-a-default-include-path-for-gcc-in-linux">here</a> for the related Linux question.)</p> <p>Is this possible in Xcode? I tried setting the above environment variable, but it doesn't seem to work. (And if it is possible, I'd like to also set related paths, like LIBRARY_PATH and LD_LIBRARY_PATH.)</p> http://stackoverflow.com/questions/749027/how-to-add-a-global-include-path-for-xcode/749110#749110 -1 Answer by Jason Coco for How to add a global include path for xcode Jason Coco 2009-04-14T19:52:59Z 2009-04-14T19:52:59Z <p>Add the <code>HEADER_SEARCH_PATHS</code> build setting to your Xcode project. This setting takes a space separated list of paths and if the path ends in a double star (<code>**</code>), it will search subdirectories recursively. So to answer for your example, set <code>HEADER_SEARCH_PATHS</code> to:</p> <pre><code>~/include </code></pre> <p>If you had a number of paths to include, you would set it to something like:</p> <pre><code>~/include ~/my_other_includes/** /usr/local/special_frameworks/** </code></pre> http://stackoverflow.com/questions/749027/how-to-add-a-global-include-path-for-xcode/750053#750053 0 Answer by Jesse Rusak for How to add a global include path for xcode Jesse Rusak 2009-04-15T02:13:47Z 2009-04-15T02:13:47Z <p>According to <a href="http://developer.apple.com/documentation/developertools/Conceptual/XcodeBuildSystem/300-Build%5FSettings/bs%5Fbuild%5Fsettings.html#//apple%5Fref/doc/uid/TP40002691-SW5" rel="nofollow">Apple's Docs</a>, be able to provide a default for any build setting using an <a href="http://developer.apple.com/qa/qa2001/qa1067.html" rel="nofollow">environmental variable</a>. </p> <p>In this case, you'd want to set <code>HEADER_SEARCH_PATHS</code>. For some reason I don't understand, this doesn't work. It works fine for other build settings (for example, OTHER_CFLAGS), but not for <code>HEADER_SEARCH_PATHS</code>. You can see what the variable name for any setting is by opening the research assistant in the build settings window (book button on the bottom left.)</p> <p>One var that does work is <code>USER_HEADER_SEARCH_PATHS</code>, which is just like what you want, but only works for paths in double quotes (not in angle brackets.)</p> <p>So</p> <pre><code>#include "bar.h" </code></pre> <p>would work, but</p> <pre><code>#include &lt;bar.h&gt; </code></pre> <p>wouldn't.</p> <p>The build settings plist referenced from the above article on environmental vars should end up looking something like this:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"&gt; &lt;plist version="1.0"&gt; &lt;dict&gt; &lt;key&gt;USER_HEADER_SEARCH_PATHS&lt;/key&gt; &lt;string&gt;~/test&lt;/string&gt; &lt;/dict&gt; &lt;/plist&gt; </code></pre> <p>Hope that helps.</p> http://stackoverflow.com/questions/749027/how-to-add-a-global-include-path-for-xcode/752835#752835 0 Answer by cdespinosa for How to add a global include path for xcode cdespinosa 2009-04-15T17:27:57Z 2009-04-15T17:27:57Z <p>Build settings are not environment variables, and environment variables are not build settings. Setting an environment variable will not affect Xcode builds.</p> <p><code>USER_HEADER_SEARCH_PATHS</code> is a build setting, and putting a list of paths into it will achieve what you want. If you set the value in a target's inspector, it will take effect for only that target (and only for the Build Configurations you designate). If you set it in the Project inspector, it will take effect in all targets in the project, unless a target overrides it with its own setting.</p> <p>For paths that are specific to your machine, you should probably define a Source Tree in the Xcode Preferences, such as <code>LOCAL_INCLUDE = ~/include</code> . Then define <code>USER_HEADER_SEARCH_PATHS = $(LOCAL_INCLUDE)</code> in the project. This way, other people can open your project and build it by setting their Source Tree to the particular location of the local includes on their machine, without having to change the project file. </p>