summaryrefslogtreecommitdiffhomepage
path: root/src/NeBuildKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-11 16:09:22 +0100
committerGitHub <noreply@github.com>2026-03-11 16:09:22 +0100
commit5a21117743272c7f09d72a8dd545fb8011f2e7d5 (patch)
tree82765912dece9de7f5f7116e93854599365299c0 /src/NeBuildKit
parent386b6ba6702aaf121a8667b68fba86385dad68ed (diff)
parentdb2224503515d469fc67f3599155c651b74ab748 (diff)
Merge pull request #26 from ne-foss-org/parallel-build
[CHORE] Add SPDX header for files.
Diffstat (limited to 'src/NeBuildKit')
-rw-r--r--src/NeBuildKit/IManifestBuilder.cpp8
-rw-r--r--src/NeBuildKit/JSONManifestBuilder.cpp9
-rw-r--r--src/NeBuildKit/TOMLManifestBuilder.cpp9
3 files changed, 12 insertions, 14 deletions
diff --git a/src/NeBuildKit/IManifestBuilder.cpp b/src/NeBuildKit/IManifestBuilder.cpp
index 2a61ed0..12cf612 100644
--- a/src/NeBuildKit/IManifestBuilder.cpp
+++ b/src/NeBuildKit/IManifestBuilder.cpp
@@ -1,6 +1,6 @@
-// ============================================================= //
-// NeBuild
-// Copyright (C) 2024-2025, Amlal El Mahrouss and NeKernel Authors, licensed under BSD-3 license.
-// ============================================================= //
+// SPDX-License-Identifier: BSD-3-Clause
+// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
+// Licensed under the Apache License, Version 2.0 (see LICENSE file)
+// Official repository: https://github.com/ne-foss-org/build
#include <NeBuildKit/IManifestBuilder.h>
diff --git a/src/NeBuildKit/JSONManifestBuilder.cpp b/src/NeBuildKit/JSONManifestBuilder.cpp
index b3db08f..6fdef1e 100644
--- a/src/NeBuildKit/JSONManifestBuilder.cpp
+++ b/src/NeBuildKit/JSONManifestBuilder.cpp
@@ -1,8 +1,7 @@
-// ============================================================= //
-// NeBuild
-// PURPOSE: JSON build support.
-// Copyright (C) 2024-2026, Amlal El Mahrouss and NeKernel Authors, licensed under BSD-3 license.
-// ============================================================= //
+// SPDX-License-Identifier: BSD-3-Clause
+// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
+// Licensed under the Apache License, Version 2.0 (see LICENSE file)
+// Official repository: https://github.com/ne-foss-org/build
#include <NeBuildKit/JSONManifestBuilder.h>
#include <json/json.h>
diff --git a/src/NeBuildKit/TOMLManifestBuilder.cpp b/src/NeBuildKit/TOMLManifestBuilder.cpp
index d7cb585..009bf07 100644
--- a/src/NeBuildKit/TOMLManifestBuilder.cpp
+++ b/src/NeBuildKit/TOMLManifestBuilder.cpp
@@ -1,8 +1,7 @@
-// ============================================================= //
-// NeBuild
-// PURPOSE: TOML build support.
-// Copyright (C) 2024-2026, Amlal El Mahrouss and NeKernel Authors, licensed under BSD-3 license.
-// ============================================================= //
+// SPDX-License-Identifier: BSD-3-Clause
+// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
+// Licensed under the Apache License, Version 2.0 (see LICENSE file)
+// Official repository: https://github.com/ne-foss-org/build
#include <NeBuildKit/TOMLManifestBuilder.h>
#include <filesystem>