diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-03 21:47:48 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-03 21:47:51 +0200 |
commit | cce9ea25d243672b9f88b124eb56e4bf37adba4c (patch) | |
tree | 3079b0d73c273b027d520509422768941bf4671a /docs/ci.md | |
parent | project.cmake: require the build dir argument (diff) | |
download | cmake-common-cce9ea25d243672b9f88b124eb56e4bf37adba4c.tar.gz cmake-common-cce9ea25d243672b9f88b124eb56e4bf37adba4c.zip |
project.cmake.build -> project.build
Accordingly, rename cmake-build to project-build.
Diffstat (limited to '')
-rw-r--r-- | docs/ci.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ `ci-boost` and `ci-cmake` are thin wrappers around `boost-download`/`boost-build` -and `cmake-build` accordingly. They work by reading environment variables and -passing their values as command line parameters to the more generic scripts. +and `project-build` accordingly. They work by reading environment variables +and passing their values as command line parameters to the more generic scripts. This facilitates matrix-building the project without too much fuss. For example, the following Travis workflow: @@ -37,7 +37,7 @@ boost-build \ --with-filesystem for configuration in Debug Release; do - cmake-build \ + project-build \ --platform x64 \ --configuration "$configuration" \ --boost "$TRAVIS_BUILD_DIR/../build/boost" \ |