1CMAKE_FIND_FRAMEWORK
2--------------------
3
4.. versionadded:: 3.4
5
6This variable affects how ``find_*`` commands choose between
7macOS Frameworks and unix-style package components.
8
9On Darwin or systems supporting macOS Frameworks, the
10``CMAKE_FIND_FRAMEWORK`` variable can be set to empty or
11one of the following:
12
13``FIRST``
14  Try to find frameworks before standard libraries or headers.
15  This is the default on Darwin.
16
17``LAST``
18  Try to find frameworks after standard libraries or headers.
19
20``ONLY``
21  Only try to find frameworks.
22
23``NEVER``
24  Never try to find frameworks.
25