summaryrefslogtreecommitdiffstats
path: root/Help/module/CMAKE_REQUIRED_FLAGS.txt
diff options
context:
space:
mode:
authorscivision <scivision@users.noreply.github.com>2023-03-08 05:23:49 (GMT)
committerscivision <scivision@users.noreply.github.com>2023-03-14 20:48:25 (GMT)
commitcf48022dc52fe5dd8161d591e4fb8b1f076ce52e (patch)
tree33952b87053838b87543466889a1fcd95e13a545 /Help/module/CMAKE_REQUIRED_FLAGS.txt
parent7d43bcb4db2b26d9f9f8d828198252a44b5560a0 (diff)
downloadCMake-cf48022dc52fe5dd8161d591e4fb8b1f076ce52e.zip
CMake-cf48022dc52fe5dd8161d591e4fb8b1f076ce52e.tar.gz
CMake-cf48022dc52fe5dd8161d591e4fb8b1f076ce52e.tar.bz2
Help:Check*: include CMAKE_REQUIRED_* vars to dedupe
CMAKE_REQUIRED_FLAGS now notes that space-delimited string, not ;-list is required, which could be surprising compared to similar options that do use ;-list
Diffstat (limited to 'Help/module/CMAKE_REQUIRED_FLAGS.txt')
-rw-r--r--Help/module/CMAKE_REQUIRED_FLAGS.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/Help/module/CMAKE_REQUIRED_FLAGS.txt b/Help/module/CMAKE_REQUIRED_FLAGS.txt
new file mode 100644
index 0000000..80ae239
--- /dev/null
+++ b/Help/module/CMAKE_REQUIRED_FLAGS.txt
@@ -0,0 +1,6 @@
+ ``CMAKE_REQUIRED_FLAGS``
+ String of additional flags to pass to the compiler. The string must be
+ space-delimited--a :ref:`;-list <CMake Language Lists>` will not work.
+ The contents of :variable:`CMAKE_<LANG>_FLAGS <CMAKE_<LANG>_FLAGS>` and
+ its associated configuration-specific variable are automatically added
+ to the compiler command before the contents of ``CMAKE_REQUIRED_FLAGS``.