From fe72f473f3dd1a53bd10be4c1f6334d6dc298689 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sun, 10 Oct 2021 18:25:50 +0100 Subject: [PATCH] Correct test directory path. Minor doc update. --- .github/workflows/ci.yml | 4 +++- doc/install.qbk | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 505865be..f5be324a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/doc/install.qbk b/doc/install.qbk index 010c9bb2..8648790e 100644 --- a/doc/install.qbk +++ b/doc/install.qbk @@ -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]