<div class="gmail_quote">On Fri, Jan 15, 2010 at 10:25 AM, Marcel Loose <span dir="ltr">&lt;<a href="mailto:loose@astron.nl">loose@astron.nl</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div><div></div><div class="h5">On Fri, 2010-01-15 at 10:07 -0500, David Cole wrote:<br>
&gt; On Fri, Jan 15, 2010 at 9:44 AM, Marcel Loose &lt;<a href="mailto:loose@astron.nl">loose@astron.nl</a>&gt; wrote:<br>
&gt;         Hi Jack,<br>
&gt;<br>
&gt;         The difference with your and my case is that you have an input<br>
&gt;         file<br>
&gt;         (the .xsd file) and output files (the .h and .cpp files). In<br>
&gt;         my case I<br>
&gt;         generate the output file, e.g. myheader.h, from <a href="http://myheader.h.in" target="_blank">myheader.h.in</a>,<br>
&gt;         using<br>
&gt;         configure_file(). The problem is that I cannot get this to<br>
&gt;         work during<br>
&gt;         &#39;make&#39;, only during &#39;cmake&#39;.<br>
&gt;<br>
&gt;         Best regards,<br>
&gt;         Marcel Loose.<br>
&gt;<br>
&gt;         On Fri, 2010-01-15 at 15:04 +0100, Smith Jack (Ext. - UGIS -<br>
&gt;         UniCredit<br>
&gt;<br>
&gt;         Group) wrote:<br>
&gt;         &gt; I do a similar thing with an XSD file from which I generate<br>
&gt;         c++<br>
&gt;         wrapper classes for accessing the corresponding XML<br>
&gt;         &gt;<br>
&gt;         &gt; Note the DEPENDS line !<br>
&gt;         &gt;<br>
&gt;         &gt; MACRO(XSD FILE NAMESPACE)<br>
&gt;         &gt;     ADD_CUSTOM_COMMAND(<br>
&gt;         &gt;         OUTPUT  ${CMAKE_CURRENT_SOURCE_DIR}/xml/${FILE}.cpp<br>
&gt;         &gt;         OUTPUT  ${CMAKE_CURRENT_SOURCE_DIR}/xml/${FILE}.h<br>
&gt;         &gt;         DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/xml/${FILE}.xsd<br>
&gt;         &gt;         COMMAND ${XAPI_CODESYNTH}/bin/xsd<br>
&gt;         &gt;         ARGS cxx-tree --generate-serialization<br>
&gt;         --hxx-suffix .h<br>
&gt;         --cxx-suffix .cpp --fwd-suffix -fwd.hxx --type-naming java<br>
&gt;         --function-naming java --namespace-map =${NAMESPACE}<br>
&gt;         --generate-polymorphic --output-dir<br>
&gt;         ${CMAKE_CURRENT_SOURCE_DIR}/xml<br>
&gt;         ${CMAKE_CURRENT_SOURCE_DIR}/xml/${FILE}.xsd<br>
&gt;         &gt;         COMMENT &quot;generating Codesynthesis Wrappers&quot;)<br>
&gt;         &gt; ENDMACRO(XSD)<br>
&gt;         &gt;<br>
&gt;         &gt;<br>
&gt;         &gt;<br>
&gt;         &gt; &gt; -----Original Message-----<br>
&gt;         &gt; &gt; From: <a href="mailto:cmake-bounces@cmake.org">cmake-bounces@cmake.org</a><br>
&gt;         &gt; &gt; [mailto:<a href="mailto:cmake-bounces@cmake.org">cmake-bounces@cmake.org</a>] On Behalf Of Marcel Loose<br>
&gt;         &gt; &gt; Sent: Friday, January 15, 2010 2:55 PM<br>
&gt;         &gt; &gt; To: <a href="mailto:cmake@cmake.org">cmake@cmake.org</a><br>
&gt;         &gt; &gt; Subject: [CMake] How to regenerate source file during<br>
&gt;         make?<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt; Hi all,<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt; I&#39;ve been struggling with this for hours now and I can&#39;t<br>
&gt;         seem<br>
&gt;         &gt; &gt; to get a grip on it.<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt; I have a header file that must be (re)generated during<br>
&gt;         &#39;make&#39;<br>
&gt;         &gt; &gt; when some external data have changed. I can successfully<br>
&gt;         &gt; &gt; generate this file during &#39;cmake&#39; using configure_file(),<br>
&gt;         but<br>
&gt;         &gt; &gt; I haven&#39;t been able to figure out how I can trigger the<br>
&gt;         &gt; &gt; configure_file() during make.<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt; Should I define a target for this header file? Or can I<br>
&gt;         &gt; &gt; specify some kind of file dependency, such that when the<br>
&gt;         &gt; &gt; header file is missing our out-of-date, it will be<br>
&gt;         (re)generated?<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt; I guess it must be some clever combination of<br>
&gt;         &gt; &gt; add_custom_command() and add_custom_target().<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt; Best regards,<br>
&gt;         &gt; &gt; Marcel Loose.<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; This should work already: if you change <a href="http://my_header.h.in" target="_blank">my_header.h.in</a> then cmake<br>
&gt; should re-run to re-configure your file at &#39;make&#39; time.<br>
&gt;<br>
&gt;<br>
&gt; If you have additional dependencies that should trigger a<br>
&gt; re-configure, you should probably convert it to an add_custom_command<br>
&gt; such that it happens at build time.<br>
<br>
</div></div>It&#39;s not the <a href="http://myheader.h.in" target="_blank">myheader.h.in</a> that&#39;s changing; myheader.h should be<br>
regenerated because the value of one of the variables in <a href="http://myheader.h.in" target="_blank">myheader.h.in</a><br>
(that get expanded) change.<br>
<br>
To be more precise, I try to record the svn revision number (and some<br>
more svn info). I carefully read<br>
<a href="http://www.mail-archive.com/cmake@cmake.org/msg25922.html" target="_blank">http://www.mail-archive.com/cmake@cmake.org/msg25922.html</a>, because it<br>
closely matches my problem, but I couldn&#39;t figure out what<br>
update_version.cmake should do exactly. In my case, I would need the<br>
values of a number CMake variables (like CMAKE_CURRENT_BINARY_DIR), but<br>
of course, these values are not around anymore when running &#39;make&#39;.<br>
Should all these variables be passed using -D?<br>
<br></blockquote><div><br></div><div>Yes. Put the configure_file call into a cmake -P script. Then use add_custom_command to call it, passing all the variables required with -D args before the -P arg.</div><div><br></div>
<div>Sounds like you&#39;ll need to run svn status and svn info *always* and then run this command afterwards *if* something is different than last time it ran...</div><div><br></div><div>HTH,</div><div>David</div><div><br>
</div></div>