Improve boost configuration

This commit is contained in:
Guilhem Lavaux 2021-04-15 15:00:05 +02:00
parent ba18690cda
commit 08074d2e8a
2 changed files with 53 additions and 5 deletions

17
external/configure_boost.cmake vendored Normal file
View file

@ -0,0 +1,17 @@
MESSAGE(STATUS "Reconfiguring using compiler flags=\"${COMPILER_EXTRA_FLAGS}\" and linker flags=\"${LINKER_EXTRA_FLAGS}\"")
FILE(WRITE ${SRC_DIR}/tools/build/src/user-config.jam
"using ${TOOLSET} : cmake : \"${COMPILER}\" : <cxxflags>\"${COMPILER_EXTRA_FLAGS}\" <linkflags>\"${LINKER_EXTRA_FLAGS}\" ;\n"
)
#FILE(APPEND ${SRC_DIR}/boost/regex/user.hpp
# "#define BOOST_REGEX_MATCH_EXTRA 1\n"
#)
execute_process(
COMMAND "${SRC_DIR}/bootstrap.sh" --prefix=${INSTALL_PATH} toolset=${TOOLSET}-cmake
RESULT_VARIABLE okcode
)
IF (NOT "${okcode}" STREQUAL "0")
MESSAGE(FATAL_ERROR "Cannot execute configure command")
ENDIF()