From 53c1fbfa2a394d5435f8a3a8c0a6dbfd62adc33b Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 22 Feb 2026 06:15:05 +0100 Subject: chore: update copyright year. Signed-off-by: Amlal El Mahrouss --- CMakeLists.txt | 4 ++-- Makefile | 4 ++-- install_windows.cmake | 2 +- src/lib/JSONManifestBuilder.cpp | 6 ++++-- src/lib/TOMLManifestBuilder.cpp | 6 ++++-- 5 files changed, 13 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7fb7068..840cdba 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ # // ============================================================= // # // NeBuild -# // Copyright (C) 2025, Amlal El Mahrouss, licensed under BSD-3 license. +# // Copyright (C) 2025-2026, Amlal El Mahrouss, licensed under BSD-3 license. # // ============================================================= // # AMLALE: Update the CMake version, which requires a version that was too old. @@ -32,4 +32,4 @@ add_custom_target(build-nebuild message(STATUS "Sources: ${NEBUILD_SOURCES}") message(STATUS "Include Dirs: ${CMAKE_SOURCE_DIR}/src;${CMAKE_SOURCE_DIR}/vendor") -include(install_windows.cmake) \ No newline at end of file +include(install_windows.cmake) diff --git a/Makefile b/Makefile index 0c285c1..7c79b23 100644 --- a/Makefile +++ b/Makefile @@ -15,12 +15,12 @@ CP=cp .PHONY: build-nebuild build-nebuild: $(SUDO) $(GCC) $(CXXFLAGS) $(SRC) $(CXXSTD) -o $(OUT) - @echo "=> NeBuild built successfully for POSIX." + @echo "=> Successfully built NeBuild for POSIX." .PHONY: build-nebuild-windows build-nebuild-windows: $(GCC_MINGW) $(CXXFLAGS) $(SRC) -o $(OUT).exe - @echo "=> NeBuild built successfully for Windows." + @echo "=> Successfully build NeBuild for Windows." .PHONY: help help: diff --git a/install_windows.cmake b/install_windows.cmake index 38d9869..b758a73 100644 --- a/install_windows.cmake +++ b/install_windows.cmake @@ -1,6 +1,6 @@ # // ============================================================= // # // NeBuild -# // Copyright (C) 2025, Amlal El Mahrouss, licensed under BSD-3 license. +# // Copyright (C) 2025-2026, Amlal El Mahrouss, licensed under BSD-3 license. # // ============================================================= // # AMLALE: Update the CMake version, which requires a version that was too old. diff --git a/src/lib/JSONManifestBuilder.cpp b/src/lib/JSONManifestBuilder.cpp index 7f52f51..09c89cd 100644 --- a/src/lib/JSONManifestBuilder.cpp +++ b/src/lib/JSONManifestBuilder.cpp @@ -1,7 +1,7 @@ // ============================================================= // // NeBuild -// PURPOSE: JSON support. -// Copyright (C) 2024-2025, Amlal El Mahrouss and NeKernel Authors, licensed under BSD-3 license. +// PURPOSE: JSON build support. +// Copyright (C) 2024-2026, Amlal El Mahrouss and NeKernel Authors, licensed under BSD-3 license. // ============================================================= // #include @@ -9,6 +9,7 @@ #include namespace NeBuild { + namespace FS = std::filesystem; /// =========================================================== /// @@ -121,4 +122,5 @@ bool JSONManifestBuilder::BuildTarget(BuildConfig& config) { const std::string_view JSONManifestBuilder::BuildSystem() { return "NeBuild (nlohmann::json)"; } + } // namespace NeBuild diff --git a/src/lib/TOMLManifestBuilder.cpp b/src/lib/TOMLManifestBuilder.cpp index 0a51a4c..cce9384 100644 --- a/src/lib/TOMLManifestBuilder.cpp +++ b/src/lib/TOMLManifestBuilder.cpp @@ -1,7 +1,7 @@ // ============================================================= // // NeBuild -// PURPOSE: TOML support. -// Copyright (C) 2024-2025, Amlal El Mahrouss and NeKernel Authors, licensed under BSD-3 license. +// PURPOSE: TOML build support. +// Copyright (C) 2024-2026, Amlal El Mahrouss and NeKernel Authors, licensed under BSD-3 license. // ============================================================= // #include @@ -9,6 +9,7 @@ #include namespace NeBuild { + namespace FS = std::filesystem; /// =========================================================== /// @@ -125,4 +126,5 @@ bool TOMLManifestBuilder::BuildTarget(BuildConfig& config) { const std::string_view TOMLManifestBuilder::BuildSystem() { return "NeBuild (toml++::toml)"; } + } // namespace NeBuild -- cgit v1.2.3