<div class="gmail_quote">On Thu, Jul 12, 2012 at 4:55 PM, Sean McBride <span dir="ltr">&lt;<a href="mailto:sean@rogue-research.com" target="_blank">sean@rogue-research.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi all,<br>
<br>
Nowadays, Xcode is distributed as a standalone .app instead of an installer that copies files all over the place.  As a consequence of this, nothing gets installed at /usr/bin/make, /usr/bin/cc, etc.<br>
<br>
Optionally, one can install a separate &#39;command line tools&#39; package that places things at those venerable locations.  Without installing that, one can still find and use &#39;make&#39; and other tools using &#39;xcrun&#39; (see &#39;man xcrun&#39;).  ex:<br>

<br>
$ xcrun make --version<br>
GNU Make 3.81<br>
<br>
$ xcrun -find make<br>
/Applications/Xcode.app/Contents/Developer/usr/bin/make<br>
<br>
Without the &#39;command line tools&#39; installed, CMake seems unable to get far:<br>
<br>
Error(s) when configuring the project<br>
CMake Error: CMake was unable to find a build program corresponding to &quot;Unix Makefiles&quot;.  CMAKE_MAKE_PROGRAM is not set.  You probably need to select a different build tool.<br>
<br>
It would be nice if CMake would invoke &#39;xcrun -find&#39; to find the paths to the tools it needs.  Or can it already, and I&#39;m missing something?<br>
<br>
Thanks,<br>
<br>
--<br>
____________________________________________________________<br>
Sean McBride, B. Eng                 <a href="mailto:sean@rogue-research.com">sean@rogue-research.com</a><br>
Rogue Research                        <a href="http://www.rogue-research.com" target="_blank">www.rogue-research.com</a><br>
Mac Software Developer              Montréal, Québec, Canada<br>
<br>
<br>
--<br>
<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the CMake FAQ at: <a href="http://www.cmake.org/Wiki/CMake_FAQ" target="_blank">http://www.cmake.org/Wiki/CMake_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.cmake.org/mailman/listinfo/cmake" target="_blank">http://www.cmake.org/mailman/listinfo/cmake</a><br>
</blockquote></div><br><div><br></div><div>Good idea, but no, this is not implemented yet. We did not know about &quot;xcrun&quot; yet. Thanks for the info.</div><div><br></div><div>For now, install the command line tools.</div>
<div><br></div><div>And, of course, patches are welcome. :-)</div><div><br></div>