From 57639e2cd7e558247204cb7cb7d62409441951d3 Mon Sep 17 00:00:00 2001 From: Mark Abraham Date: Thu, 23 May 2024 09:40:31 +0200 Subject: [PATCH] Variable names are case sensitive Fixes #53 --- content/hello-cmake.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/content/hello-cmake.rst b/content/hello-cmake.rst index f61c6f2..0b06108 100644 --- a/content/hello-cmake.rst +++ b/content/hello-cmake.rst @@ -150,9 +150,10 @@ There are few things to note here: ``LANGUAGES`` Languages in the project. -2. The case of CMake commands and variables does not matter: the DSL is +2. The case of CMake commands does not matter: the DSL is case-insensitive. However, the plain-text files that CMake parses **must be - called** ``CMakeLists.txt`` and the case matters! + called** ``CMakeLists.txt`` and the case matters! The variable names are + also case sensitive! 3. The command to add executables to the build system is, unsurprisingly, |add_executable|: .. signature:: |add_executable|