diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-03 20:41:10 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-03 21:26:12 +0200 |
commit | b3c440a0e582b58bdfd984041e031cf061690648 (patch) | |
tree | 2ce44a3022f912213d5ddbbf9e1117b8b2b49f9b /README.md | |
parent | fix PyLint warnings (diff) | |
download | cmake-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 '')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -78,7 +78,7 @@ Pass the `--help` flag to view detailed usage information. Build (and optionally, install) a CMake project. - $ cmake-build --configuration Release --install path/to/somewhere --boost path/to/boost -- examples/simple + $ cmake-build --configuration Release --install path/to/somewhere --boost path/to/boost -- examples/simple build/ ... $ ./path/to/somewhere/bin/foo |