aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/README.md
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-03-24 15:45:16 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-03-24 15:52:13 +0300
commit6e3ff5f7e837c0aa2affb23966ded375628e100f (patch)
tree05dca26357a17ec5595a718cafee3686db21b1df /README.md
parentproject.cmake: fix "auto" platform detection (diff)
downloadcmake-common-6e3ff5f7e837c0aa2affb23966ded375628e100f.tar.gz
cmake-common-6e3ff5f7e837c0aa2affb23966ded375628e100f.zip
project.ci: change build directory
It's now <source directory>/../build for consistency.
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/README.md b/README.md
index 8362c8a..2de686f 100644
--- a/README.md
+++ b/README.md
@@ -87,15 +87,15 @@ and CMake projects on multiple CI systems.
They work by calling the generic scripts from above, auto-filling some
parameters from environment variables.
-| | Travis | AppVeyor | GitHub Actions
-| ----------------- | ---------------- | --------------------- | ----------------------------
-| `--toolset` | `$toolset` | `$toolset` | `$toolset`
-| `--platform` | `$platform` | `$PLATFORM` | `$platform`
-| `--configuration` | `$configuration` | `$CONFIGURATION` | `$configuration`
-| Boost version | `$boost_version` | `$boost_version` | `$boost_version`
-| Boost path | `$HOME/boost/` | `C:\projects\boost` | `$RUNNER_WORKSPACE/boost/`
-| Build path | `$HOME/build/` | `C:\projects\build` | `$RUNNER_WORKSPACE/build/`
-| Install path | `$HOME/install/` | `C:\projects\install` | `$RUNNER_WORKSPACE/install/`
+| | Travis | AppVeyor | GitHub Actions
+| ----------------- | ------------------------------------ | ------------------------------------------ | ------------------------------------
+| `--toolset` | `$toolset` | `%toolset%` | `$toolset`
+| `--platform` | `$platform` | `%PLATFORM%` | `$platform`
+| `--configuration` | `$configuration` | `%CONFIGURATION%` | `$configuration`
+| Boost version | `$boost_version` | `%boost_version%` | `$boost_version`
+| Boost path | `$TRAVIS_BUILD_DIR/../build/boost` | `%APPVEYOR_BUILD_FOLDER%\..\build\boost` | `$GITHUB_WORKSPACE/../build/boost`
+| Build path | `$TRAVIS_BUILD_DIR/../build/cmake` | `%APPVEYOR_BUILD_FOLDER%\..\build\cmake` | `$GITHUB_WORKSPACE/../build/cmake`
+| Install path | `$TRAVIS_BUILD_DIR/../build/install` | `%APPVEYOR_BUILD_FOLDER%\..\build\install` | `$GITHUB_WORKSPACE/../build/install`
For example, the following Travis workflow: