diff options
author | Cameron Cawley <ccawley2011@gmail.com> | 2022-04-17 12:12:57 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-05-06 14:40:59 (GMT) |
commit | 6a2b016bbd35f5843cc95e36431928fd0905a61c (patch) | |
tree | b1d8b95203bb5729f2d8e025667d253cfe7c766a /Help/prop_tgt | |
parent | 33da5824acefcb4106ce89fc2278111dc3846c0a (diff) | |
download | CMake-6a2b016bbd35f5843cc95e36431928fd0905a61c.zip CMake-6a2b016bbd35f5843cc95e36431928fd0905a61c.tar.gz CMake-6a2b016bbd35f5843cc95e36431928fd0905a61c.tar.bz2 |
OpenWatcom: Support CMAKE_WATCOM_RUNTIME_LIBRARY with Linux and OS/2 builds
Diffstat (limited to 'Help/prop_tgt')
-rw-r--r-- | Help/prop_tgt/WATCOM_RUNTIME_LIBRARY-VALUES.txt | 6 | ||||
-rw-r--r-- | Help/prop_tgt/WATCOM_RUNTIME_LIBRARY.rst | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/Help/prop_tgt/WATCOM_RUNTIME_LIBRARY-VALUES.txt b/Help/prop_tgt/WATCOM_RUNTIME_LIBRARY-VALUES.txt index c29d73e..cdf99d0 100644 --- a/Help/prop_tgt/WATCOM_RUNTIME_LIBRARY-VALUES.txt +++ b/Help/prop_tgt/WATCOM_RUNTIME_LIBRARY-VALUES.txt @@ -3,13 +3,15 @@ statically-linked runtime library. ``SingleThreadedDLL`` Compile with ``-br`` or equivalent flag(s) to use a single-threaded - dynamically-linked runtime library. + dynamically-linked runtime library. This is not available for Linux + targets. ``MultiThreaded`` Compile with ``-bm`` or equivalent flag(s) to use a multi-threaded statically-linked runtime library. ``MultiThreadedDLL`` Compile with ``-bm -br`` or equivalent flag(s) to use a multi-threaded - dynamically-linked runtime library. + dynamically-linked runtime library. This is not available for Linux + targets. The value is ignored on non-Watcom compilers but an unsupported value will be rejected as an error when using a compiler targeting the Watcom ABI. diff --git a/Help/prop_tgt/WATCOM_RUNTIME_LIBRARY.rst b/Help/prop_tgt/WATCOM_RUNTIME_LIBRARY.rst index 9f031fa..3752862 100644 --- a/Help/prop_tgt/WATCOM_RUNTIME_LIBRARY.rst +++ b/Help/prop_tgt/WATCOM_RUNTIME_LIBRARY.rst @@ -24,7 +24,8 @@ selects for the target ``foo`` a multi-threaded statically-linked runtime library. If this property is not set then CMake uses the default value -``MultiThreadedDLL`` to select a Watcom runtime library. +``MultiThreadedDLL`` on Windows and ``SingleThreaded`` on other +platforms to select a Watcom runtime library. .. note:: |