aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristophe Marin <christophe@krop.fr>2024-02-25 16:39:06 +0100
committerChristophe Marin <christophe@krop.fr>2024-02-25 16:39:06 +0100
commitf353355a7d75a570a81005c133df8631bc0205f3 (patch)
tree17684f95abe121c4a41fe5c0262661c56f56955b
parent938263439cafd3ab9a7d779b129d32a9d4fd59d4 (diff)
Fix typo
GIT_SILENT
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c920e879..4cde09eb 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -89,7 +89,7 @@ if(NOT DEFINED REGEX_RUN_RESULT)
endif()
if(NOT DEFINED REGEX_RUN_RESULT)
- message(FATAL_ERROR "std::regex support is mndatory")
+ message(FATAL_ERROR "std::regex support is mandatory")
endif()
# Compiler might support c++17 but not have std::filesystem in the standard library
@@ -98,7 +98,7 @@ if (NOT FILESYSTEM_RUN_RESULT)
endif()
if (NOT FILESYSTEM_RUN_RESULT)
- message(FATAL_ERROR "std::filesystem support is mndatory")
+ message(FATAL_ERROR "std::filesystem support is mandatory")
endif()
include(ClazySources.cmake)