diff options
author | Gregor Jasny <gjasny@googlemail.com> | 2019-02-10 10:22:38 (GMT) |
---|---|---|
committer | Gregor Jasny <gjasny@googlemail.com> | 2019-02-16 14:20:39 (GMT) |
commit | afb325018ebe7c41933b652732a43e4bb4777588 (patch) | |
tree | dd4162ef023032f8f1ac2c77727ab3e53b37c33b /Help/variable/CMAKE_MAKE_PROGRAM.rst | |
parent | 657b30905a9d03869c99064872ec715c9934312a (diff) | |
download | CMake-afb325018ebe7c41933b652732a43e4bb4777588.zip CMake-afb325018ebe7c41933b652732a43e4bb4777588.tar.gz CMake-afb325018ebe7c41933b652732a43e4bb4777588.tar.bz2 |
Xcode: Require at least Xcode 5
Diffstat (limited to 'Help/variable/CMAKE_MAKE_PROGRAM.rst')
-rw-r--r-- | Help/variable/CMAKE_MAKE_PROGRAM.rst | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Help/variable/CMAKE_MAKE_PROGRAM.rst b/Help/variable/CMAKE_MAKE_PROGRAM.rst index 4f5a50f..56df2df 100644 --- a/Help/variable/CMAKE_MAKE_PROGRAM.rst +++ b/Help/variable/CMAKE_MAKE_PROGRAM.rst @@ -19,15 +19,11 @@ to configure the project: This generator stores ``CMAKE_MAKE_PROGRAM`` in the CMake cache so that it may be edited by the user. -* The :generator:`Xcode` generator sets this to ``xcodebuild`` (or possibly an - otherwise undocumented ``cmakexbuild`` wrapper implementing some - workarounds). +* The :generator:`Xcode` generator sets this to ``xcodebuild``. This generator prefers to lookup the build tool at build time rather than to store ``CMAKE_MAKE_PROGRAM`` in the CMake cache - ahead of time. This is because ``xcodebuild`` is easy to find, - the ``cmakexbuild`` wrapper is needed only for older Xcode versions, - and the path to ``cmakexbuild`` may be outdated if CMake itself moves. + ahead of time. This is because ``xcodebuild`` is easy to find. For compatibility with versions of CMake prior to 3.2, if a user or project explicitly adds ``CMAKE_MAKE_PROGRAM`` to |