mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-25 10:18:34 -06:00
Help: Replace occurrences of "Mac OS X" with "macOS"
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.
This commit is contained in:
committed by
Brad King
parent
cc5bac458b
commit
fc1602456a
@@ -2,5 +2,5 @@ CMAKE_APPBUNDLE_PATH
|
||||
--------------------
|
||||
|
||||
:ref:`;-list <CMake Language Lists>` of directories specifying a search path
|
||||
for OS X application bundles used by the :command:`find_program`, and
|
||||
for macOS application bundles used by the :command:`find_program`, and
|
||||
:command:`find_package` commands.
|
||||
|
||||
@@ -12,7 +12,7 @@ dependency on the executable is created for targets that link to it.
|
||||
For DLL platforms an import library will be created for the exported
|
||||
symbols and then used for linking. All Windows-based systems
|
||||
including Cygwin are DLL platforms. For non-DLL platforms that
|
||||
require all symbols to be resolved at link time, such as OS X, the
|
||||
require all symbols to be resolved at link time, such as macOS, the
|
||||
module will ``link`` to the executable using a flag like
|
||||
``-bundle_loader``. For other non-DLL platforms the link rule is simply
|
||||
ignored since the dynamic loader will automatically bind symbols when
|
||||
|
||||
@@ -2,9 +2,9 @@ CMAKE_FIND_APPBUNDLE
|
||||
--------------------
|
||||
|
||||
This variable affects how ``find_*`` commands choose between
|
||||
OS X Application Bundles and unix-style package components.
|
||||
macOS Application Bundles and unix-style package components.
|
||||
|
||||
On Darwin or systems supporting OS X Application Bundles, the
|
||||
On Darwin or systems supporting macOS Application Bundles, the
|
||||
``CMAKE_FIND_APPBUNDLE`` variable can be set to empty or
|
||||
one of the following:
|
||||
|
||||
|
||||
@@ -2,9 +2,9 @@ CMAKE_FIND_FRAMEWORK
|
||||
--------------------
|
||||
|
||||
This variable affects how ``find_*`` commands choose between
|
||||
OS X Frameworks and unix-style package components.
|
||||
macOS Frameworks and unix-style package components.
|
||||
|
||||
On Darwin or systems supporting OS X Frameworks, the
|
||||
On Darwin or systems supporting macOS Frameworks, the
|
||||
``CMAKE_FIND_FRAMEWORK`` variable can be set to empty or
|
||||
one of the following:
|
||||
|
||||
|
||||
@@ -2,6 +2,6 @@ CMAKE_FRAMEWORK_PATH
|
||||
--------------------
|
||||
|
||||
:ref:`;-list <CMake Language Lists>` of directories specifying a search path
|
||||
for OS X frameworks used by the :command:`find_library`,
|
||||
for macOS frameworks used by the :command:`find_library`,
|
||||
:command:`find_package`, :command:`find_path`, and :command:`find_file`
|
||||
commands.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
CMAKE_HOST_APPLE
|
||||
----------------
|
||||
|
||||
``True`` for Apple OS X operating systems.
|
||||
``True`` for Apple macOS operating systems.
|
||||
|
||||
Set to ``true`` when the host system is Apple OS X.
|
||||
Set to ``true`` when the host system is Apple macOS.
|
||||
|
||||
@@ -4,5 +4,5 @@ CMAKE_HOST_SYSTEM_NAME
|
||||
Name of the OS CMake is running on.
|
||||
|
||||
On systems that have the uname command, this variable is set to the
|
||||
output of ``uname -s``. ``Linux``, ``Windows``, and ``Darwin`` for OS X
|
||||
output of ``uname -s``. ``Linux``, ``Windows``, and ``Darwin`` for macOS
|
||||
are the values found on the big three operating systems.
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
CMAKE_INSTALL_NAME_DIR
|
||||
----------------------
|
||||
|
||||
OS X directory name for installed targets.
|
||||
macOS directory name for installed targets.
|
||||
|
||||
``CMAKE_INSTALL_NAME_DIR`` is used to initialize the
|
||||
:prop_tgt:`INSTALL_NAME_DIR` property on all targets. See that target
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
CMAKE_MACOSX_RPATH
|
||||
-------------------
|
||||
|
||||
Whether to use rpaths on OS X and iOS.
|
||||
Whether to use rpaths on macOS and iOS.
|
||||
|
||||
This variable is used to initialize the :prop_tgt:`MACOSX_RPATH` property on
|
||||
all targets.
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
CMAKE_OSX_ARCHITECTURES
|
||||
-----------------------
|
||||
|
||||
Target specific architectures for OS X and iOS.
|
||||
Target specific architectures for macOS and iOS.
|
||||
|
||||
This variable is used to initialize the :prop_tgt:`OSX_ARCHITECTURES`
|
||||
property on each target as it is created. See that target property
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
CMAKE_OSX_SYSROOT
|
||||
-----------------
|
||||
|
||||
Specify the location or name of the OS X platform SDK to be used.
|
||||
Specify the location or name of the macOS platform SDK to be used.
|
||||
CMake uses this value to compute the value of the ``-isysroot`` flag
|
||||
or equivalent and to help the ``find_*`` commands locate files in
|
||||
the SDK.
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
CMAKE_SYSTEM_APPBUNDLE_PATH
|
||||
---------------------------
|
||||
|
||||
Search path for OS X application bundles used by the :command:`find_program`,
|
||||
Search path for macOS application bundles used by the :command:`find_program`,
|
||||
and :command:`find_package` commands. By default it contains the standard
|
||||
directories for the current system. It is *not* intended to be modified by
|
||||
the project, use :variable:`CMAKE_APPBUNDLE_PATH` for this.
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
CMAKE_SYSTEM_FRAMEWORK_PATH
|
||||
---------------------------
|
||||
|
||||
Search path for OS X frameworks used by the :command:`find_library`,
|
||||
Search path for macOS frameworks used by the :command:`find_library`,
|
||||
:command:`find_package`, :command:`find_path`, and :command:`find_file`
|
||||
commands. By default it contains the standard directories for the
|
||||
current system. It is *not* intended to be modified by the project,
|
||||
|
||||
Reference in New Issue
Block a user