On 07/04/2012 08:37 AM, hce wrote: > Hi, > > In ExternalProject_Add, "BUILD_COMMAND make" works fine, but I need to add > multiple make commands. In Linux command line I can type "make && make > extra", but how can I set following BUILD_COMMAND for multiple make > commands, it just not working? > > BUILD_COMMAND make && make extra > INSTALL_COMMAND make install && make extra-install > > Thank you. > > Kind regards, > > Jupiter >
What's wrong with? BUILD_COMMAND make all extra INSTALL_COMMAND make install extra-install HTH Michael -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Follow this link to subscribe/unsubscribe: http://www.cmake.org/mailman/listinfo/cmake
