cmake/Help/command/output_required_files.rst

20 lines
680 B
ReStructuredText
Raw Normal View History

2014-08-03 19:52:23 +02:00
output_required_files
---------------------
2019-11-11 23:01:05 +01:00
Disallowed since version 3.0. See CMake Policy :policy:`CMP0032`.
2014-08-03 19:52:23 +02:00
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.
2023-05-23 16:38:00 +02:00
.. code-block:: cmake
2014-08-03 19:52:23 +02:00
output_required_files(srcfile outputfile)
Outputs a list of all the source files that are required by the
2019-11-11 23:01:05 +01:00
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.