From 420b165bffb63aec762d69db0f6372a3f2375762 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Camilla=20L=C3=B6wy?= Date: Mon, 12 Oct 2020 18:32:50 +0200 Subject: [PATCH] Wayland: Fix indentation --- src/CMakeLists.txt | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 61e13146..7c095e67 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -50,18 +50,18 @@ if (_GLFW_WAYLAND) pkg_get_variable(WAYLAND_PROTOCOLS_BASE wayland-protocols pkgdatadir) macro(wayland_generate protocol_file output_file) - add_custom_command(OUTPUT "${output_file}.h" - COMMAND "${WAYLAND_SCANNER_EXECUTABLE}" client-header "${protocol_file}" "${output_file}.h" - DEPENDS "${protocol_file}" - VERBATIM) - list(APPEND GLFW_WAYLAND_PROTOCOL_SOURCES "${output_file}.h)" + add_custom_command(OUTPUT "${output_file}.h" + COMMAND "${WAYLAND_SCANNER_EXECUTABLE}" client-header "${protocol_file}" "${output_file}.h" + DEPENDS "${protocol_file}" + VERBATIM) + list(APPEND GLFW_WAYLAND_PROTOCOL_SOURCES "${output_file}.h)" - add_custom_command(OUTPUT "${output_file}.c" - COMMAND "${WAYLAND_SCANNER_EXECUTABLE}" private-code "${protocol_file}" "${output_file}.c" - DEPENDS "${protocol_file}" - VERBATIM) + add_custom_command(OUTPUT "${output_file}.c" + COMMAND "${WAYLAND_SCANNER_EXECUTABLE}" private-code "${protocol_file}" "${output_file}.c" + DEPENDS "${protocol_file}" + VERBATIM) - list(APPEND GLFW_WAYLAND_PROTOCOL_SOURCES "${output_file}.c") + list(APPEND GLFW_WAYLAND_PROTOCOL_SOURCES "${output_file}.c") endmacro() set(GLFW_WAYLAND_PROTOCOL_SOURCES)