<div dir="ltr"><div><div><div><div>Hi Norman,<br><br></div>I used your CMakeLists script and I tried adding VERBOSE=1 likeso:<br><br>BUILD_COMMAND ${CMAKE_BUILD_TOOL} VERBOSE=1<br><br></div>But I still get the same error (I also tried adding VERBOSE to the end of the CONFIGURE_COMMAND and INSTALL_COMMAND but same thing). Maybe it's worth noting in terminal the VERBOSE command resulted in this also being printed throughout the make process:<br>
<br>Dependee "/Build/Metis/src/Metis/build/Linux-x86_64/libmetis/CMakeFiles/metis.dir/DependInfo.cmake" is newer than depender "/Build/Metis/src/Metis/build/Linux-x86_64/libmetis/CMakeFiles/metis.dir/depend.internal".<br>
Dependee "/Build/Metis/src/Metis/build/Linux-x86_64/libmetis/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/Build/Metis/src/Metis/build/Linux-x86_64/libmetis/CMakeFiles/metis.dir/depend.internal".<br>
<br>Anyways I then went set CMAKE_VERBOSE_MAKEFILE to ON likeso:<br><br>SET(CMAKE_VERBOSE_MAKEFILE ON)<br>ExternalProject_Add(Metis ...<br><br></div>and then it told me: make[4]: *** No rule to make target `w' <br><br>
</div>where it used to say target 's'. Did I not use VERBOSE correctly? If I did use it correctly then your solution may be machine dependent then. Interestingly, if I jump from config to make install likeso:<br><div>
<div><div><div><div><br>CONFIGURE_COMMAND ${CMAKE_BUILD_TOOL} config shared=1 prefix=${CMAKE_INSTALL_PREFIX}/Metis<br><br>BUILD_COMMAND ${CMAKE_BUILD_TOOL} install<br></div><div><br></div><div>it will then give the same error but AFTER it installs Metis. Is there by any chance a way to make CMake ignore this error and continue running? That way I wouldn't have to wait for a fix to this bug.<br>
<br><br></div><div>Thanks for the help,<br>Chad<br></div><div><br></div></div></div></div></div></div><div class="gmail_extra"><br clear="all"><div><div dir="ltr"><div></div><div>--<br></div><div>Chad Balen, E.I.T.<b><br>
</b></div><div>Energy Systems Design Laboratory,<br></div><div>3-23 Mechanical Engineering Building,<br></div><div>University of Alberta,<br>Edmonton, AB<b><br></b></div></div></div>
<br><br><div class="gmail_quote">On Tue, May 27, 2014 at 12:16 PM, Williams, Norman K <span dir="ltr"><<a href="mailto:norman-k-williams@uiowa.edu" target="_blank">norman-k-williams@uiowa.edu</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I took what you did it and cleaned it up a bit, but I ran into the same<br>
issue. Strangely, in trying to debug it I ran<br>
Œmake VERBOSE=1¹ and THAT command succeeded where Œmake¹ by itself had<br>
that problem with finding the target ¹s¹<br>
<br>
I then tried setting CMAKE_VERBOSE_MAKEFILE to ON and same thing, the<br>
build succeeded. So I don¹t know where that target ¹s¹ complaint came from.<br>
<br>
So maybe this is something to log as a bug.<br>
<br>
By the way, Metis actually comes with a Cmake build setup (I.e.<br>
CMakeLists.txt) but it¹s broken.<br>
<br>
This is the CMakeLists.txt I wrote to test with:<br>
<br>
cmake_minimum_required(VERSION 2.8)<br>
project(MetisBuild)<br>
include(ExternalProject)<br>
ExternalProject_Add(Metis<br>
URL <a href="http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/metis-5.1.0.tar.gz" target="_blank">http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/metis-5.1.0.tar.gz</a><br>
URL_MD5 0<br>
SOURCE_DIR Metis<br>
BUILD_IN_SOURCE 1<br>
BUILD_COMMAND ${CMAKE_BUILD_TOOL}<br>
UPDATE_COMMAND ""<br>
CONFIGURE_COMMAND ${CMAKE_BUILD_TOOL} config shared=1<br>
prefix=${CMAKE_INSTALL_PREFIX}/contrib/Metis<br>
INSTALL_COMMAND ${CMAKE_BUILD_TOOL} install<br>
<div class=""> INSTALL_DIR ${CMAKE_INSTALL_PREFIX}/contrib/Metis<br>
)<br>
<br>
<br>
<br>
<br>
<br>
</div>________________________________<br>
Notice: This UI Health Care e-mail (including attachments) is covered by the Electronic Communications Privacy Act, 18 U.S.C. 2510-2521, is confidential and may be legally privileged. If you are not the intended recipient, you are hereby notified that any retention, dissemination, distribution, or copying of this communication is strictly prohibited. Please reply to the sender that you have received the message in error, then delete it. Thank you.<br>
________________________________<br>
<br>
</blockquote></div><br></div>