CMake/Help/variable/CMAKE_FIND_FRAMEWORK.rst
Kitware Robot 496ec6036f Help: Add Sphinx 'versionadded' directives to each top-level document
Run the `Utilities/Sphinx/update_versions.py` script to add initial
markup to every top-level document and find module.

Issue: #19715
2020-07-06 10:23:20 -04:00

25 lines
576 B
ReStructuredText

CMAKE_FIND_FRAMEWORK
--------------------
.. versionadded:: 3.4
This variable affects how ``find_*`` commands choose between
macOS Frameworks and unix-style package components.
On Darwin or systems supporting macOS Frameworks, the
``CMAKE_FIND_FRAMEWORK`` variable can be set to empty or
one of the following:
``FIRST``
Try to find frameworks before standard libraries or headers.
This is the default on Darwin.
``LAST``
Try to find frameworks after standard libraries or headers.
``ONLY``
Only try to find frameworks.
``NEVER``
Never try to find frameworks.