Added module for Boost detection and automatic build-up

This commit is contained in:
Radovan Bast
2015-09-07 17:45:31 +02:00
committed by Roberto Di Remigio
parent ea694c0bdd
commit 1780e4a189
44 changed files with 510 additions and 25 deletions

View File

@ -0,0 +1,9 @@
# Build Boost
add_custom_command(
OUTPUT ${CUSTOM_BOOST_LOCATION}/boost.built
COMMAND ./b2 toolset=${toolset} variant=${type} link=static cxxflags=-fPIC
threading=multi --user-config=user-config.jam 1> ${CUSTOM_BOOST_LOCATION}/boost.built.log 2> ${CUSTOM_BOOST_LOCATION}/boost.built.err
COMMAND ${CMAKE_COMMAND} -E touch ${CUSTOM_BOOST_LOCATION}/boost.built
WORKING_DIRECTORY ${BOOST_BUILD_DIR}
DEPENDS ${CUSTOM_BOOST_LOCATION}/boost.configured
COMMENT "Building Boost")