Build bug fix, the location of Boost config.hpp was wrong so ninja decides it is missing and rebuilds boost on every build.

This commit is contained in:
Steve Atherton 2022-10-15 23:40:48 -07:00
parent 8733614f63
commit a452e6ee82
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ function(compile_boost)
BUILD_IN_SOURCE ON
INSTALL_COMMAND ""
UPDATE_COMMAND ""
BUILD_BYPRODUCTS "${BOOST_INSTALL_DIR}/boost/config.hpp"
BUILD_BYPRODUCTS "${BOOST_INSTALL_DIR}/include/boost/config.hpp"
"${BOOST_INSTALL_DIR}/lib/libboost_context.a"
"${BOOST_INSTALL_DIR}/lib/libboost_filesystem.a"
"${BOOST_INSTALL_DIR}/lib/libboost_iostreams.a")