From d0074dfef20a84b8c462a7844a18550533889b88 Mon Sep 17 00:00:00 2001 From: Glenn Strauss Date: Fri, 16 Sep 2022 00:15:03 -0400 Subject: [meson] add license keyword to project declaration --- meson.build | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index d681901e..b05480e3 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,6 @@ -project('lighttpd', 'c', version: '1.4.67', default_options : ['c_std=c11']) +project('lighttpd', 'c', version: '1.4.67', license: 'BSD-3-Clause', + default_options : ['c_std=c11'] +) subdir('src') subdir('tests') @@ -10,10 +12,10 @@ subdir('tests') # $ ninja # full build: -# $ meson configure -D build_extra_warnings=true -D with_bzip=true -D with_dbi=true -D with_fam=true -D with_krb5=true -D with_ldap=true -D with_libev=true -D with_libunwind=true -D with_lua=true -D with_mysql=true -D with_openssl=true -D with_pcre2=true -D with_pgsql=true -D with_sasl=true -D with_webdav_locks=true -D with_webdav_props=true -D with_xattr=true -D with_zlib=true +# $ meson configure -D build_extra_warnings=true -D buildtype=debugoptimized -D with_bzip=true -D with_dbi=true -D with_fam=true -D with_krb5=true -D with_ldap=true -D with_libev=true -D with_libunwind=true -D with_lua=true -D with_mysql=true -D with_openssl=true -D with_pcre2=true -D with_pgsql=true -D with_sasl=true -D with_webdav_locks=true -D with_webdav_props=true -D with_xattr=true -D with_zlib=true # optimized build: # $ meson configure -D b_lto=true -D buildtype=debugoptimized -# monolitic build (contains all plugins): -# $ meson configure -D build_static=true +# monolithic build (contains all plugins): +# $ meson configure -D build_static=true -D buildtype=minsize -- cgit v1.2.1