From 5457e21cf34bc0b117a5680592c2718fa02ec73d Mon Sep 17 00:00:00 2001
From: Kubat <mael.martin31@gmail.com>
Date: Fri, 8 May 2020 12:44:16 +0200
Subject: [PATCH] Fit in one screen

---
 meson.build | 29 +++++++++++++++--------------
 1 file changed, 15 insertions(+), 14 deletions(-)

diff --git a/meson.build b/meson.build
index 70e40f57..caaaf1bb 100644
--- a/meson.build
+++ b/meson.build
@@ -82,20 +82,21 @@ mthread_deps = [ declare_dependency( link_with: static_library( 'mthread'
                                    , include_directories: includes
                                    , dependencies: [ common_deps ] ) ]
 
-generated_deps = [ declare_dependency( link_with: static_library( 'generated'
-                                                                , [ custom_target( 'sqlinit'
-                                                                                 , output: 'sqlinit.c'
-                                                                                 , input: 'src/database/disk.sql'
-                                                                                 , command: [ find_program('xxd'), '-i', '@INPUT@', '@OUTPUT@' ] ) ]
-                                                                , [ custom_target( 'sqlmemory'
-                                                                                 , output: 'sqlmemory.c'
-                                                                                 , input: 'src/database/memory.sql'
-                                                                                 , command: [ find_program('xxd'), '-i', '@INPUT@', '@OUTPUT@' ] ) ]
-                                                                , [ custom_target( 'manpath'
-                                                                                 , output: 'manpath.c'
-                                                                                 , input: 'meson.build'
-                                                                                 , command: [ find_program('sh'), '-c', 'echo \'const char *man_executable_path = "\'"$(which man)"\'";\' > @OUTPUT@' ] ) ] )
-                                     ) ]
+generated_deps = [ declare_dependency(
+  link_with: static_library( 'generated'
+                           , [ custom_target( 'sqlinit'
+                                            , output: 'sqlinit.c'
+                                            , input: 'src/database/disk.sql'
+                                            , command: [ find_program('xxd'), '-i', '@INPUT@', '@OUTPUT@' ] ) ]
+                           , [ custom_target( 'sqlmemory'
+                                            , output: 'sqlmemory.c'
+                                            , input: 'src/database/memory.sql'
+                                            , command: [ find_program('xxd'), '-i', '@INPUT@', '@OUTPUT@' ] ) ]
+                           , [ custom_target( 'manpath'
+                                            , output: 'manpath.c'
+                                            , input: 'meson.build'
+                                            , command: [ find_program('sh'), '-c', 'echo \'const char *man_executable_path = "\'"$(which man)"\'";\' > @OUTPUT@' ] ) ] )
+                           ) ]
 
 lib = static_library( 'lektor'
                     , files(core_sources)
-- 
GitLab