mirror of
https://github.com/reactos/CMake.git
synced 2025-03-06 10:58:49 +00:00

Apple's main Operating system changed their name from OS X to macOS: https://www.engadget.com/2016/06/13/os-x-is-now-macos/ Revise documentation accordingly.
23 lines
553 B
ReStructuredText
23 lines
553 B
ReStructuredText
CMAKE_FIND_FRAMEWORK
|
|
--------------------
|
|
|
|
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.
|