mirror of
https://github.com/Vita3K/ext-boost.git
synced 2025-02-17 03:57:41 +00:00
36 lines
641 B
Bash
36 lines
641 B
Bash
./bootstrap.sh
|
|
./b2 tools/bcp
|
|
|
|
SUBSETS_OUTDIR=./subsets-boost
|
|
|
|
if [ -f "$SUBSETS_OUTDIR" ]; then
|
|
rm "$SUBSETS_OUTDIR"
|
|
elif [ -d "$SUBSETS_OUTDIR" ]; then
|
|
rm -r "$SUBSETS_OUTDIR"
|
|
fi
|
|
|
|
echo "Creating $SUBSETS_OUTDIR"
|
|
mkdir -p "$SUBSETS_OUTDIR"
|
|
|
|
./dist/bin/bcp \
|
|
config ^
|
|
crc ^
|
|
filesystem ^
|
|
icl ^
|
|
log ^
|
|
optional ^
|
|
predef ^
|
|
program_options ^
|
|
range ^
|
|
system ^
|
|
unordered ^
|
|
bootstrap.bat \
|
|
bootstrap.sh \
|
|
boostcpp.jam \
|
|
boost-build.jam \
|
|
tools/build \
|
|
tools/boost_install/BoostConfig.cmake \
|
|
tools/boost_install/BoostDetectToolset.cmake \
|
|
tools/boost_install/boost-install.jam \
|
|
tools/boost_install/boost-install-dirs.jam \
|
|
"$SUBSETS_OUTDIR" |