summaryrefslogtreecommitdiff
path: root/share/cmake-3.22/Help/command/output_required_files.rst
diff options
context:
space:
mode:
Diffstat (limited to 'share/cmake-3.22/Help/command/output_required_files.rst')
-rw-r--r--share/cmake-3.22/Help/command/output_required_files.rst19
1 files changed, 19 insertions, 0 deletions
diff --git a/share/cmake-3.22/Help/command/output_required_files.rst b/share/cmake-3.22/Help/command/output_required_files.rst
new file mode 100644
index 0000000..b3a6e86
--- /dev/null
+++ b/share/cmake-3.22/Help/command/output_required_files.rst
@@ -0,0 +1,19 @@
+output_required_files
+---------------------
+
+Disallowed since version 3.0. See CMake Policy :policy:`CMP0032`.
+
+Approximate C preprocessor dependency scanning.
+
+This command exists only because ancient CMake versions provided it.
+CMake handles preprocessor dependency scanning automatically using a
+more advanced scanner.
+
+::
+
+ output_required_files(srcfile outputfile)
+
+Outputs a list of all the source files that are required by the
+specified ``srcfile``. This list is written into ``outputfile``. This is
+similar to writing out the dependencies for ``srcfile`` except that it
+jumps from ``.h`` files into ``.cxx``, ``.c`` and ``.cpp`` files if possible.