summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-11 16:09:02 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-11 16:09:02 +0100
commitdb2224503515d469fc67f3599155c651b74ab748 (patch)
treedddc3508c8d5884c434b139aab6fe9eca67d125e /src
parent7a469801ecb55fcde0199d4e41b1cec3a17dcb05 (diff)
[CHORE] Add SPDX header for files.parallel-build
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src')
-rw-r--r--src/CommandLine/CLI.cpp11
-rw-r--r--src/NeBuildKit/IManifestBuilder.cpp8
-rw-r--r--src/NeBuildKit/JSONManifestBuilder.cpp9
-rw-r--r--src/NeBuildKit/TOMLManifestBuilder.cpp9
4 files changed, 16 insertions, 21 deletions
diff --git a/src/CommandLine/CLI.cpp b/src/CommandLine/CLI.cpp
index 5645728..b2259da 100644
--- a/src/CommandLine/CLI.cpp
+++ b/src/CommandLine/CLI.cpp
@@ -1,10 +1,7 @@
-
-// ============================================================= //
-// NeBuild
-// FILE: main.cc
-// PURPOSE: Main Tool Entrypoint.
-// 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/JSONManifestBuilder.h>
#include <NeBuildKit/TOMLManifestBuilder.h>
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 0cc9fd3..73dfca2 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 cce9384..d81e668 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>