I took what you did it and cleaned it up a bit, but I ran into the same issue. Strangely, in trying to debug it I ran Œmake VERBOSE=1¹ and THAT command succeeded where Œmake¹ by itself had that problem with finding the target ¹s¹
I then tried setting CMAKE_VERBOSE_MAKEFILE to ON and same thing, the build succeeded. So I don¹t know where that target ¹s¹ complaint came from. So maybe this is something to log as a bug. By the way, Metis actually comes with a Cmake build setup (I.e. CMakeLists.txt) but it¹s broken. This is the CMakeLists.txt I wrote to test with: cmake_minimum_required(VERSION 2.8) project(MetisBuild) include(ExternalProject) ExternalProject_Add(Metis URL http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/metis-5.1.0.tar.gz URL_MD5 0 SOURCE_DIR Metis BUILD_IN_SOURCE 1 BUILD_COMMAND ${CMAKE_BUILD_TOOL} UPDATE_COMMAND "" CONFIGURE_COMMAND ${CMAKE_BUILD_TOOL} config shared=1 prefix=${CMAKE_INSTALL_PREFIX}/contrib/Metis INSTALL_COMMAND ${CMAKE_BUILD_TOOL} install INSTALL_DIR ${CMAKE_INSTALL_PREFIX}/contrib/Metis ) ________________________________ 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. ________________________________ -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Kitware offers various services to support the CMake community. For more information on each offering, please visit: CMake Support: http://cmake.org/cmake/help/support.html CMake Consulting: http://cmake.org/cmake/help/consulting.html CMake Training Courses: http://cmake.org/cmake/help/training.html Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Follow this link to subscribe/unsubscribe: http://www.cmake.org/mailman/listinfo/cmake
