mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-04 21:00:17 -06: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
583 B
ReStructuredText
23 lines
583 B
ReStructuredText
CMAKE_FIND_APPBUNDLE
|
|
--------------------
|
|
|
|
This variable affects how ``find_*`` commands choose between
|
|
macOS Application Bundles and unix-style package components.
|
|
|
|
On Darwin or systems supporting macOS Application Bundles, the
|
|
``CMAKE_FIND_APPBUNDLE`` variable can be set to empty or
|
|
one of the following:
|
|
|
|
``FIRST``
|
|
Try to find application bundles before standard programs.
|
|
This is the default on Darwin.
|
|
|
|
``LAST``
|
|
Try to find application bundles after standard programs.
|
|
|
|
``ONLY``
|
|
Only try to find application bundles.
|
|
|
|
``NEVER``
|
|
Never try to find application bundles.
|