aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Feature-autodetection.md
diff options
context:
space:
mode:
authorJoel Rosdahl <joel@rosdahl.net>2019-05-26 10:05:16 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2019-05-27 01:10:57 +0300
commitf13e65b93a72fca08bebc93afdd34437f2f15c25 (patch)
treebb81b6fff8c8896efecd2d10e10effe5877d9440 /docs/markdown/Feature-autodetection.md
parente3e1d67ad61f4b3ddc80a1cbb069a944d5d7a361 (diff)
downloadmeson-f13e65b93a72fca08bebc93afdd34437f2f15c25.zip
meson-f13e65b93a72fca08bebc93afdd34437f2f15c25.tar.gz
meson-f13e65b93a72fca08bebc93afdd34437f2f15c25.tar.bz2
Update to new ccache URL
ccacheā€™s web site is now located at https://ccache.dev. Bonus: Use the preferred capitalization ā€œCcacheā€ instead of ā€œCCacheā€.
Diffstat (limited to 'docs/markdown/Feature-autodetection.md')
-rw-r--r--docs/markdown/Feature-autodetection.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/markdown/Feature-autodetection.md b/docs/markdown/Feature-autodetection.md
index f50309e..a4e8e45 100644
--- a/docs/markdown/Feature-autodetection.md
+++ b/docs/markdown/Feature-autodetection.md
@@ -7,18 +7,18 @@ short-description: Auto-detection of features like ccache and code coverage
Meson is designed for high productivity. It tries to do as many things
automatically as it possibly can.
-CCache
+Ccache
--
-[CCache](https://ccache.samba.org/) is a cache system designed to make
+[Ccache](https://ccache.dev/) is a cache system designed to make
compiling faster. When you run Meson for the first time for a given
-project, it checks if CCache is installed. If it is, Meson will use it
+project, it checks if Ccache is installed. If it is, Meson will use it
automatically.
-If you do not wish to use CCache for some reason, just specify your
+If you do not wish to use Ccache for some reason, just specify your
compiler with environment variables `CC` and/or `CXX` when first
running Meson (remember that once specified the compiler can not be
-changed). Meson will then use the specified compiler without CCache.
+changed). Meson will then use the specified compiler without Ccache.
Coverage
--