Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Variable names are case sensitive #54

Merged
merged 1 commit into from
May 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions content/hello-cmake.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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|
Expand Down
Loading