summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt4
-rw-r--r--Makefile4
-rw-r--r--install_windows.cmake2
-rw-r--r--src/lib/JSONManifestBuilder.cpp6
-rw-r--r--src/lib/TOMLManifestBuilder.cpp6
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 <NeBuildKit/JSONManifestBuilder.h>
@@ -9,6 +9,7 @@
#include <fstream>
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 <NeBuildKit/TOMLManifestBuilder.h>
@@ -9,6 +9,7 @@
#include <toml++/toml.hpp>
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