<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div>Hi David,</div><div><br></div>Yes, this works fine when I change the CMAKE_INSTALL_PREFIX at CMakeCache.txt, sure.<div><br></div><div>There is only one fault: the config files will be rebuild with the wrong path before install :-((</div><div><br></div><div><br></div><div>At least, I know 2 packages, NetSnmp and LibSmi, they has to&nbsp;be compiled with fix absolute paths,</div><div>including the device name on Windows, that is not my idea! It would be better to use a ConfigFile and&nbsp;</div><div>the program can be install at any place. But they is a history and they needs there MIB's.</div><div>(What is the current drive to find this config file when I start c:/usr/bin/smilint from d:/workdir?)</div><div><div><br><div>When I add the string replace command to the cmake_install.cmake file, it works as a quick hack.</div><div><div>This should only remove the drive string in the middle, not the beginning of the PREFIX path:</div><div><br></div><div>STRING(REGEX REPLACE "/[A-Za-z]:/" "/" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")<br></div><div><br></div></div><div>But I know that this can't be the general solution.</div><div><br></div><div><br></div><div>I did not see any DESTDIR in this file, so I think it will be set as parameter or in environment?</div><div>Only if DESTDIR is given, this drive name has to be replace.</div><div><br></div><div>Where is the DESTDIR prepended to the PREFIX?</div><div>Is there a template for this generated&nbsp;cmake_install.cmake?</div><div><br></div><div>Claus</div><div><br><div><div>On 08.01.2010, at 17:49, David Cole wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div class="gmail_quote">On Fri, Jan 8, 2010 at 12:37 AM, Claus Klein <span dir="ltr">&lt;<a href="mailto:claus.klein@arcormail.de">claus.klein@arcormail.de</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"> <br> On 08.01.2010, at 02:25, Alexander Neundorf wrote:<br> <br> <blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im"> On Thursday 07 January 2010, Claus Klein wrote:<br> <blockquote class="gmail_quote" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0.8ex; border-left-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; padding-left: 1ex; position: static; z-index: auto; "> Hi<br> <br> i want to install a cross compiled (build host is a MAC OS X) project<br> to a temporary state dir to get an archive to distribute the binaries.<br> The target is win32 (mingw), compiled to be installed at c:/usr as<br> CMAKE_INSTALL_PREFIX.<br> This prefix is used while compile the binaries, so I can't change it.<br> <br> I think, that when I use DESTDIR while "make DESTDIR=/tmp/cmake<br> install", the device (C:) should be removed before to use it as part<br> of a path like this:<br> <br> STRING(REGEX REPLACE "[A-Za-z:/]" "" CMAKE_INSTALL_PREFIX "$<br> {CMAKE_INSTALL_PREFIX}")<br> <br> head cmake_install.cmake<br> # Install script for directory: /Users/clausklein/Workspace/c/libsmi/<br> trunk<br> #<br> # Set the install prefix<br> IF(NOT DEFINED CMAKE_INSTALL_PREFIX)<br> &nbsp;SET(CMAKE_INSTALL_PREFIX "C:/usr")<br> ENDIF(NOT DEFINED CMAKE_INSTALL_PREFIX)<br> STRING(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "$<br> {CMAKE_INSTALL_PREFIX}")<br> . . . .<br> <br> As you can see, &nbsp;PREFIX is appended to DESDIR without modification.<br> which is wrong in this special case.<br> </blockquote> <br></div> Yes. So you would suggest to remove the drive letter from CMAKE_INSTALL_PREFIX<br> when installing with DESTDIR set ?<br> <br> Alex<br> </blockquote> <br> Yes<br> <br> I think it is never a valid path in this case to on Windows itself:<br> <br> i.e. C:/tmp/cmake/C:/usr/lib/pkgconfig<br> <br> I want to create a zip archive at /tmp/cmake to install it on Windows under C:/<br><font color="#888888"> <br> Claus</font><div><div></div><div class="h5"><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> </div></div></blockquote></div><br><div><br></div><div>Can you try setting CMAKE_INSTALL_PREFIX to just "/usr" instead of "C:/usr" to see if you can get what you want in that manner...?</div><div><br> </div></blockquote></div><br></div></div></div></body></html>