From 1b131552445e9eabcabc07c600fe7a3749ff7108 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Sun, 19 Jun 2022 13:49:52 -0400 Subject: [PATCH] meson: include the license info in the project definition This is useful to help convey the usage rights and e.g. generate a Software Bill of Materials. --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index f5affb4..ce99ae3 100644 --- a/meson.build +++ b/meson.build @@ -5,6 +5,7 @@ # license: MIT # project('unity', 'c', + license: 'MIT', meson_version: '>=0.37.0', default_options: ['werror=true', 'c_std=c11'])