aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-04-18 11:24:31 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-04-18 11:24:31 +0300
commit362af576c80487e63dbc1f164d04c3f367d26890 (patch)
tree5e3f230b5fd030850172696630cf2b1eb3ff3d02
parentREADME: update (diff)
downloadbuild-boost-362af576c80487e63dbc1f164d04c3f367d26890.tar.gz
build-boost-362af576c80487e63dbc1f164d04c3f367d26890.zip
README: update
-rw-r--r--README.md9
1 files changed, 4 insertions, 5 deletions
diff --git a/README.md b/README.md
index 77d4ae2..64108be 100644
--- a/README.md
+++ b/README.md
@@ -56,7 +56,7 @@ API
| directory | *empty* | ✓ | Build in `${{ runner.workspace }}/boost`.
| | *any* | | Build in a custom directory.
-| Output | Example | CMake name | Description
+| Output | Example | CMake input | Description
| ---------- | -------------------------------------- | ---------------- | -----------
| root | D:\a\project\boost | BOOST_ROOT | Root Boost directory.
| librarydir | D:\a\project\boost\stage\x64\Debug\lib | BOOST_LIBRARYDIR | Directory that contains the built libraries.
@@ -64,10 +64,9 @@ API
Use the `librarydir` output to locate the built libraries.
You can pass it to CMake using the `BOOST_LIBRARYDIR` parameter:
- > cmake \
- -D "BOOST_ROOT=${{ steps.boost.outputs.root }}" \
- -D "BOOST_LIBRARYDIR=${{ steps.boost.outputs.librarydir }}" \
- ...
+ > cmake -D "BOOST_ROOT=${{ steps.boost.outputs.root }}" \
+ -D "BOOST_LIBRARYDIR=${{ steps.boost.outputs.librarydir }}" \
+ ...
Notes
-----