summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-04-14 17:14:50 (GMT)
committerBrad King <brad.king@kitware.com>2015-04-14 17:14:50 (GMT)
commit9ac05683902c7412476c4514588bff5c016d6ce1 (patch)
treece4613ee2b0809fe3a70f61d8dcc0469a3dbd753
parentcdc53b62c20605467334ecb80c474533e04ff26c (diff)
downloadCMake-9ac05683902c7412476c4514588bff5c016d6ce1.zip
CMake-9ac05683902c7412476c4514588bff5c016d6ce1.tar.gz
CMake-9ac05683902c7412476c4514588bff5c016d6ce1.tar.bz2
Ninja: Drop 'experimental' label in documentation
This generator is no longer experimental and has been fairly mature for several releases already.
-rw-r--r--Help/generator/Ninja.rst2
-rw-r--r--Source/cmGlobalNinjaGenerator.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/Help/generator/Ninja.rst b/Help/generator/Ninja.rst
index 08f74fb..920abcb 100644
--- a/Help/generator/Ninja.rst
+++ b/Help/generator/Ninja.rst
@@ -1,7 +1,7 @@
Ninja
-----
-Generates build.ninja files (experimental).
+Generates build.ninja files.
A build.ninja file is generated into the build tree. Recent versions
of the ninja program can build the project through the "all" target.
diff --git a/Source/cmGlobalNinjaGenerator.cxx b/Source/cmGlobalNinjaGenerator.cxx
index f74f1e0..9a00fa6 100644
--- a/Source/cmGlobalNinjaGenerator.cxx
+++ b/Source/cmGlobalNinjaGenerator.cxx
@@ -507,7 +507,7 @@ void cmGlobalNinjaGenerator
::GetDocumentation(cmDocumentationEntry& entry)
{
entry.Name = cmGlobalNinjaGenerator::GetActualName();
- entry.Brief = "Generates build.ninja files (experimental).";
+ entry.Brief = "Generates build.ninja files.";
}
// Implemented in all cmGlobaleGenerator sub-classes.