sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit a0b5953aa89c23f0c7fc270911a3c71f11e2e1bd
parent a642827dfbf68de07c625e7c127efefaa9ac1ae1
Author: taiyu <taiyu-len@users.noreply.github.com>
Date:   Wed, 25 Nov 2015 04:38:20 -0800

Merge pull request #254 from christophgysin/typo

cmake: Fix typo
Diffstat:
MCMake/Wayland.cmake | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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)