diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-18 11:24:31 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-18 11:24:31 +0300 |
commit | 362af576c80487e63dbc1f164d04c3f367d26890 (patch) | |
tree | 5e3f230b5fd030850172696630cf2b1eb3ff3d02 | |
parent | README: update (diff) | |
download | build-boost-362af576c80487e63dbc1f164d04c3f367d26890.tar.gz build-boost-362af576c80487e63dbc1f164d04c3f367d26890.zip |
README: update
-rw-r--r-- | README.md | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -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 ----- |