Hi all,<div><br></div><div>I'm trying to build boost with ExternalProject_add using cmake 2.8.7, and there seems to be an error in the makefile it's generating. Specifically, in the step where it created the directories, the makefile ends up with this line:</div>
<div><br></div><div> /apps/cmake/cmake-2.8.7/bin/cmake -E make_directory /workspace/boost/build CONFIGURE_CMD "bootstrap.sh --libdir=/workspace/boost/install --includedir=/workspace/boost/install --with-libraries=serialization" BUILD_CMD "bjam install"<br clear="all">
<br>It seems to me that that is supposed to be two or more separate calls. This obviously ends up calling cmake in error. Below is my call to ExternalProject_add, in-case that is what is in erorr, but I've fooled around with it a fair amount and get the same results every time, so I don't think that's where the issue is</div>
<div><br></div><div><div>ExternalProject_Add ( boost</div><div> PREFIX ${CMAKE_SOURCE_DIR}/boost/tmp</div><div> DOWNLOAD_COMMAND ""</div><div> SOURCE_DIR ${CMAKE_SOURCE_DIR}/boost/1_48_0</div>
<div> INSTALL_DIR ${CMAKE_SOURCE_DIR}/boost/install</div><div> BINARY_DIR ${CMAKE_SOURCE_DIR}/boost/build</div><div> CONFIGURE_CMD "bootstrap.sh --libdir=<INSTALL_DIR> --includedir=<INSTALL_DIR> --with-libraries=serialization"</div>
<div> BUILD_CMD "bjam install"</div><div>)</div><div><br></div>Thanks for the help!<br>
</div>