aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/boost.md
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-03-14 20:19:09 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-03-14 20:29:44 +0300
commit209a0cd261ddfb9c82fe921286c49333bd60371e (patch)
treee937ae4ae777f7a44e37fd289d7a7c87f4e9960f /docs/boost.md
parentmove large in-code comments to docs/ (diff)
downloadcmake-common-209a0cd261ddfb9c82fe921286c49333bd60371e.tar.gz
cmake-common-209a0cd261ddfb9c82fe921286c49333bd60371e.zip
docs: markdownify
Diffstat (limited to '')
-rw-r--r--docs/boost.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/boost.md b/docs/boost.md
index 6e91d42..ead2103 100644
--- a/docs/boost.md
+++ b/docs/boost.md
@@ -11,8 +11,8 @@ can't even store debug/release binaries in the same directory. What's worse is
versions don't support the architecture suffix, choking on the Windows example above.
With all of that in mind, I decided to bring some uniformity by sacrificing some flexibility.
-b2 is called with --layout=system, and libraries are put to stage/<platform>/<configuration>/lib,
-where <platform> is x86/x64 and <configuration> is CMake's CMAKE_BUILD_TYPE. That means that I
+b2 is called with --layout=system, and libraries are put to stage/\<platform\>/\<configuration\>/lib,
+where \<platform\> is x86/x64 and \<configuration\> is CMake's CMAKE_BUILD_TYPE. That means that I
can't have libraries with different runtime-link values in the same directory, but I don't really
care.