aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/project
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-01-17 16:20:11 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-01-17 16:20:11 +0300
commit254786b6846bd59f5118a75456f184c36e86a3dc (patch)
tree3ef46eb1897337c5ec1203dfaa197d67ebc2817b /project
parentfix .clang-format (diff)
downloadcmake-common-254786b6846bd59f5118a75456f184c36e86a3dc.tar.gz
cmake-common-254786b6846bd59f5118a75456f184c36e86a3dc.zip
README: update
Diffstat (limited to 'project')
-rw-r--r--project/toolchain.py25
1 files changed, 15 insertions, 10 deletions
diff --git a/project/toolchain.py b/project/toolchain.py
index 4d10872..f92e536 100644
--- a/project/toolchain.py
+++ b/project/toolchain.py
@@ -6,16 +6,21 @@
'''Supported platform/build system/compiler combinations include, but are not
limited to:
-* Linux / make / Clang,
-* Linux / make / GCC,
-* Linux / make / MinGW-w64,
-* Windows / make / Clang (clang.exe & clang++.exe),
-* Windows / make / Clang (clang-cl.exe, Boost 1.69.0 or higher only),
-* Windows / make / MinGW-w64,
-* Windows / msbuild / MSVC,
-* Cygwin / make / Clang,
-* Cygwin / make / GCC,
-* Cygwin / make / MinGW-w64.
+| Platform | Build system | Compiler
+| -------- | ------------ | --------
+| Linux | make | Clang
+| | | GCC
+| | | MinGW-w64
+| Windows | make [1] | Clang (clang/clang++)
+| | | Clang (clang-cl [2])
+| | | MinGW-w64
+| | msbuild | MSVC
+| Cygwin | make | Clang
+| | | GCC
+| | | MinGW-w64
+
+1. Both GNU make and MinGW mingw32-make.
+2. Boost 1.69.0 or higher only.
'''
import argparse