diff options
author | Felix Geyer <fgeyer@debian.org> | 2016-03-29 18:24:20 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-03-29 18:31:02 (GMT) |
commit | 49e82c15d57db01a95f740f511715064a3887615 (patch) | |
tree | 8c03b2bd20b20248d7ab61531aacde3667e7b485 /Modules/ExternalProject.cmake | |
parent | 90f24f016e93d18f6a244b39fd21c68355bdbe48 (diff) | |
download | CMake-49e82c15d57db01a95f740f511715064a3887615.zip CMake-49e82c15d57db01a95f740f511715064a3887615.tar.gz CMake-49e82c15d57db01a95f740f511715064a3887615.tar.bz2 |
Fix spelling typos in comments and documentation (#16037)
The Debian package checker tool (lintian) detected several typos in
CMake.
Diffstat (limited to 'Modules/ExternalProject.cmake')
-rw-r--r-- | Modules/ExternalProject.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/ExternalProject.cmake b/Modules/ExternalProject.cmake index 249658d..1078b81 100644 --- a/Modules/ExternalProject.cmake +++ b/Modules/ExternalProject.cmake @@ -113,7 +113,7 @@ Create custom targets to build projects in external trees ``CMAKE_CACHE_ARGS <arg>...`` Initial cache arguments, of the form ``-Dvar:string=on``. These arguments are written in a pre-load a script that populates - CMake cache, see also :manual:`cmake -C <cmake(1)>`. This allows to + CMake cache, see also :manual:`cmake -C <cmake(1)>`. This allows one to overcome command line length limits. These arguments are :command:`set` using the ``FORCE`` argument, and therefore cannot be changed by the user. @@ -122,7 +122,7 @@ Create custom targets to build projects in external trees ``CMAKE_CACHE_DEFAULT_ARGS <arg>...`` Initial default cache arguments, of the form ``-Dvar:string=on``. These arguments are written in a pre-load a script that populates - CMake cache, see also :manual:`cmake -C <cmake(1)>`. This allows to + CMake cache, see also :manual:`cmake -C <cmake(1)>`. This allows one to overcome command line length limits. These arguments can be used as default value that will be set if no previous value is found in the cache, and that the user can change @@ -238,7 +238,7 @@ Create custom targets to build projects in external trees If ``UPDATE_DISCONNECTED`` is set, the update step is not executed automatically when building the main target. The update step can still be added as a step target and called manually. This is useful if you - want to allow to build the project when you are disconnected from the + want to allow one to build the project when you are disconnected from the network (you might still need the network for the download step). This is disabled by default. The directory property ``EP_UPDATE_DISCONNECTED`` can be used to change |