]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#3731] Added Copyright
authorFrancis Dupont <fdupont@isc.org>
Sat, 15 Mar 2025 21:37:04 +0000 (22:37 +0100)
committerAndrei Pavel <andrei@isc.org>
Mon, 17 Mar 2025 10:16:30 +0000 (12:16 +0200)
meson.build

index 6446f6b9da65d2802e44af04371a137fb39c3559..75216c8d9bd7b8fac0b6ddbe7996506b03c806bb 100644 (file)
@@ -1,6 +1,26 @@
+# Copyright (C) 2025 Internet Systems Consortium, Inc. ("ISC")
+#
+# SPDX-License-Identifier: MPL-2.0
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0.  If a copy of the MPL was not distributed with this
+# file, you can obtain one at https://mozilla.org/MPL/2.0/.
+#
+# See the COPYING file distributed with this work for additional
+# information regarding copyright ownership.
+
 # Require meson >= 0.64.0 for preserve_path arg in install_data.
 # Require meson >= 1.1.0 for meson.options file.
-project('kea', 'cpp', version: '2.7.7-git', meson_version: '>=1.1.0')
+
+project(
+    'kea',
+    'cpp',
+    version: '2.7.7-git',
+    meson_version: '>=1.1.0',
+    license: 'MPL-2.0',
+    license_files: ['COPYING'],
+    default_options: ['b_pch=false', 'b_pie=true'],
+)
 
 cpp = meson.get_compiler('cpp')
 PROJECT_VERSION = meson.project_version()