Correct test directory path.

Minor doc update.
This commit is contained in:
jzmaddock
2021-10-10 18:25:50 +01:00
parent e1057e777d
commit fe72f473f3
2 changed files with 5 additions and 2 deletions

View File

@ -362,14 +362,16 @@ jobs:
cmake --build .
cmake --build . --target check
rm -rf *
echo Standalone configuration
cmake -DBOOST_REGEX_STANDALONE=on ..
cmake --build .
cmake --build . --target check
cd ../cmake_subdir_test_icu && mkdir __build__ && cd __build__
cd ../../cmake_subdir_test_icu && mkdir __build__ && cd __build__
cmake ..
cmake --build .
cmake --build . --target check
rm -rf *
echo Standalone configuration
cmake -DBOOST_REGEX_STANDALONE=on ..
cmake --build .
cmake --build . --target check

View File

@ -49,7 +49,8 @@ CMakeLists.txt defines two targets:
There is also one configuration option:
* BOOST_REGEX_STANDALONE when set then no other Boost libraries are targeted as dependencies, and Boost.Regex is placed in standalone mode.
* BOOST_REGEX_STANDALONE when set then no other Boost libraries are targeted as dependencies, and Boost.Regex is placed in standalone mode. Invoke CMake
with -DBOOST_REGEX_STANDALONE=on to enable standalone mode.
[h4 [*C++03 users only (DEPRECATED)] Building with bjam]