From eb740f0a8a0c3c9aefd2cea777e62672d0dabb51 Mon Sep 17 00:00:00 2001 From: trilader Date: Sun, 18 Jul 2021 16:41:45 +0200 Subject: [PATCH] Format meson.build --- meson.build | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index e21bb17..1f74aa4 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ # SPDX-License-Identifier: MIT -project('yttui', ['cpp'], default_options: ['buildtype=release', 'cpp_std=c++17'], version: '0.1.0') +project('yttui', ['cpp'], default_options: ['buildtype=release', 'cpp_std=c++17'], version: '0.1.0', license: 'MIT') add_project_arguments('-Werror=return-type', language: 'cpp') @@ -29,7 +29,11 @@ application = static_library('yttui-application', application_files, dependencie tui_files = [ 'yttui.cpp', ] -executable('yttui', tui_files, link_with: [application], install: true) +executable('yttui', + tui_files, + link_with: [application], + install: true +) qt5 = import('qt5') qt5_dep = dependency('qt5', modules: ['Core', 'Gui', 'Widgets'], required: false)