aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-07-03 20:41:10 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-07-03 21:26:12 +0200
commitb3c440a0e582b58bdfd984041e031cf061690648 (patch)
tree2ce44a3022f912213d5ddbbf9e1117b8b2b49f9b /docs
parentfix PyLint warnings (diff)
downloadcmake-common-b3c440a0e582b58bdfd984041e031cf061690648.tar.gz
cmake-common-b3c440a0e582b58bdfd984041e031cf061690648.zip
project.cmake: require the build dir argument
It doesn't make a lot of sense for the build dir argument to be optional. There's still a placeholder you can use to build in a temporary directory.
Diffstat (limited to 'docs')
-rw-r--r--docs/ci.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/ci.md b/docs/ci.md
index d0695b7..8c11f7c 100644
--- a/docs/ci.md
+++ b/docs/ci.md
@@ -44,7 +44,8 @@ for configuration in Debug Release; do
--build "$TRAVIS_BUILD_DIR/../build/cmake" \
--install "$TRAVIS_BUILD_DIR/../build/install" \
-- \
- "$TRAVIS_BUILD_DIR"
+ "$TRAVIS_BUILD_DIR" \
+ TMP
done
```