diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2015-11-25 14:09:10 +0200 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2015-11-25 14:09:10 +0200 |
| commit | 2dba68af25032cc36e719b84cdf21030612b4843 (patch) | |
| tree | 0c57d2da3e30d53534f3e47d354439344ea4ff62 /CMake | |
| parent | 75331e5786b0c2ab234fddcba519f3484bd65c79 (diff) | |
cmake: Fix typo
Diffstat (limited to 'CMake')
| -rw-r--r-- | CMake/Wayland.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMake/Wayland.cmake b/CMake/Wayland.cmake index 42f97b3b..6647c5ee 100644 --- a/CMake/Wayland.cmake +++ b/CMake/Wayland.cmake @@ -35,7 +35,7 @@ find_program(WAYLAND_SCANNER_EXECUTABLE NAMES wayland-scanner) # wayland_add_protocol_client(outfiles inputfile basename) function(WAYLAND_ADD_PROTOCOL_CLIENT _sources _protocol _basename) if(NOT WAYLAND_SCANNER_EXECUTABLE) - message(FATAL "The wayland-scanner executable has nto been found on your system. You must install it.") + message(FATAL "The wayland-scanner executable has not been found on your system. You must install it.") endif() get_filename_component(_infile ${_protocol} ABSOLUTE) @@ -57,7 +57,7 @@ endfunction() # wayland_add_protocol_server(outfiles inputfile basename) function(WAYLAND_ADD_PROTOCOL_SERVER _sources _protocol _basename) if(NOT WAYLAND_SCANNER_EXECUTABLE) - message(FATAL "The wayland-scanner executable has nto been found on your system. You must install it.") + message(FATAL "The wayland-scanner executable has not been found on your system. You must install it.") endif() get_filename_component(_infile ${_protocol} ABSOLUTE) |
