On Sat, Aug 7, 2010 at 11:02 AM, Chris Wolf <span dir="ltr">&lt;<a href="mailto:cw10025@gmail.com">cw10025@gmail.com</a>&gt;</span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div class="im"><br>
<br>
On 8/7/10 9:44 AM, David Cole wrote:<br>
</div><div><div></div><div class="h5">&gt; On Sat, Aug 7, 2010 at 9:26 AM, Chris Wolf &lt;<a href="mailto:cw10025@gmail.com">cw10025@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On 8/7/10 7:14 AM, Eric Noulard wrote:<br>
&gt;&gt;&gt; 2010/8/7 Chris Wolf &lt;<a href="mailto:cw10025@gmail.com">cw10025@gmail.com</a>&gt;:<br>
&gt;&gt;&gt;&gt; On 8/6/10 8:55 PM, Eric Noulard wrote:<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Did you try the command line?<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; cpack -D CPACK_PACKAGING_INSTALL_PREFIX=&quot;/opt&quot; -G DEB<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; it works for me.<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; if it works for you may be<br>
&gt;&gt;&gt;&gt;&gt; CPACK_PACKAGING_INSTALL_PREFIX is set to late<br>
&gt;&gt;&gt;&gt;&gt; in the CMakeLists.txt?<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Yes, I tried that about 8 hours ago:<br>
&gt;&gt; <a href="http://www.cmake.org/pipermail/cmake/2010-August/038785.html" target="_blank">http://www.cmake.org/pipermail/cmake/2010-August/038785.html</a><br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; I have to say NOW it&#39;s working.  Sorry - I suppose I was changing too<br>
&gt;&gt; many things at one back then<br>
&gt;&gt;&gt;&gt; and I was missing something.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Ok, this issue is resolved, thank you.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Good to know.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; [...]<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Sorry to beat a &quot;deadhorse&quot;, since I see this has already been<br>
&gt;&gt; discussed:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; <a href="http://www.mail-archive.com/cmake@cmake.org/msg16180.html" target="_blank">http://www.mail-archive.com/cmake@cmake.org/msg16180.html</a><br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; I think that guy had a good proposal - being able to control path<br>
&gt;&gt; prefixes<br>
&gt;&gt;&gt;&gt; at a per/generator level.  I guess for now, I can just run cpack<br>
&gt;&gt; multiple<br>
&gt;&gt;&gt;&gt; times with path/generator options on the command line.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I think you are right, command line is the current best way to go.<br>
&gt;&gt;&gt; Now having a Generator Specific<br>
&gt;&gt;&gt; CPACK_&lt;GEN&gt;_PACKAGING_INSTALL_PREFIX<br>
&gt;&gt;&gt; wouldn&#39;t be that difficult to implement.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Now when enough [wo]man power will be given in<br>
&gt;&gt;&gt; <a href="http://public.kitware.com/Bug/view.php?id=7000" target="_blank">http://public.kitware.com/Bug/view.php?id=7000</a><br>
&gt;&gt;&gt; this can be discussed.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Re-read the bug comments and may be add your ideas there.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; And I do not think the horse is dead, we are merely waiting<br>
&gt;&gt;&gt; for a jockey for ridding bug #7000 :-)<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Ok, I added a note to this bug with an example proposed code change.  If it<br>
&gt;&gt; looks good, I can try it myself and if it works I can submit patches.<br>
&gt;&gt;<br>
&gt;&gt; Let me know, thanks,<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt; You can already do what you propose with that change today: in a<br>
&gt; CPACK_PROJECT_CONFIG_FILE<br>
&gt; file. (Without making any C++ changes and without waiting for resolution of<br>
&gt; issue #7000...).<br>
&gt;<br>
&gt; Inside that file, you can inspect the value of CPACK_GENERATOR and<br>
&gt; set/override other CPACK_* variables. In this case, you would have as many<br>
&gt; if() blocks as needed to set CPACK_PACKAGING_INSTALL_PREFIX to whatever<br>
&gt; value you want for each generator.<br>
&gt;<br>
&gt; The CPACK_PROJECT_CONFIG_FILE file is included *at cpack time* and is<br>
&gt; intended to give you the hook you need to do generator specific stuff.<br>
&gt;<br>
&gt; Perhaps the proposed change is still a good one and would make this task<br>
&gt; easier. Although it seems silly to me to invent a bunch of new variables<br>
&gt; when there&#39;s already a technique that could be used to achieve the task<br>
&gt; today. We already, as you have observed, have enough &quot;prefix&quot; variables<br>
&gt; floating around. I&#39;m not sure adding more is the way to go.<br>
&gt;<br>
<br>
</div></div>To try to understand your approach, I created a file, &quot;MyCpackConfig.cmake&quot;,<br>
which looks like:<br>
<br>
# keep cmake-generated settings<br>
include(CPackConfig.cmake)<br>
<div class="im"><br>
if(&quot;${CPACK_GENERATOR}&quot; STREQUAL &quot;PackageMaker&quot;)<br>
</div>  set(CPACK_PACKAGING_INSTALL_PREFIX &quot;/tmp/local&quot;)<br>
<div class="im">endif(&quot;${CPACK_GENERATOR}&quot; STREQUAL &quot;PackageMaker&quot;)<br>
<br>
<br>
</div>...then I invoke like:<br>
<br>
cpack --config MyCpackConfig.cmake<br>
<br>
...and yet, the results show that CPACK_PACKAGING_INSTALL_PREFIX was not<br>
overriden for PackageMaker.  I am at a loss here...<br>
<font color="#888888"><br><br></font></blockquote><div><br></div><div>You do not need to include(CPackConfig.cmake) -- and, in fact, you shouldn&#39;t.</div><div><br></div><div>Since you did include it, it has CPACK_GENERATOR defined to a list from CPackConfig.cmake, rather than cpack&#39;s internal definition. (So it&#39;s never equalling PackageMaker...) So you&#39;re not seeing your override take effect...</div>
<div><br></div><div>The CPACK_PROJECT_CONFIG_FILE is included automatically on a per-generator basis. It only need contain overrides.</div></div><div><br></div>Here&#39;s how it goes:<div>- cpack runs</div><div>- it includes CPackConfig.cmake</div>
<div>- iterates over the generators listed in that file&#39;s CPACK_GENERATOR (unless told to use just a specific one via -G on the command line...)</div><div>--- foreach generator, it then</div><div>  - sets CPACK_GENERATOR to the one currently being iterated</div>
<div>  - includes the CPACK_PROJECT_CONFIG_FILE</div><div>  - produces the package for that generator</div><div><br><div>This is the key: For each generator listed in CPACK_GENERATOR in CPackConfig.cmake, cpack will *reset* CPACK_GENERATOR internally to *the one currently being used* and then include the CPACK_PROJECT_CONFIG_FILE.</div>
<div><br></div><div>As I said before, it&#39;s somewhat confusing, but once you get it, it does make sense.</div><div><br></div></div><div>So, to recap:</div><div>-- do not include CPackConfig in your CPACK_PROJECT_CONFIG_FILE</div>
<div>-- just run &quot;cpack&quot; on the command line</div><div><br></div><div>I hope this gets you over the finish line, now. ;-)</div><div><br></div><div><br></div><div>David</div><div><br></div><div><br></div>