summaryrefslogtreecommitdiffhomepage
path: root/dev/src/TOMLManifestBuilder.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-18 08:45:58 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-11-18 08:45:58 +0100
commitb21246fbf4b082e21f811d488bd85e8dafdee428 (patch)
tree86d0ff4cfb91cf609071c900f2d400ecb89bdba2 /dev/src/TOMLManifestBuilder.cc
parentc782117221f0b8f0bb018df673f935c1791fee32 (diff)
feat: CMake file, new entries to gitignore, and code under BSD-3 now.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/src/TOMLManifestBuilder.cc')
-rw-r--r--dev/src/TOMLManifestBuilder.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/src/TOMLManifestBuilder.cc b/dev/src/TOMLManifestBuilder.cc
index e35416a..53034e8 100644
--- a/dev/src/TOMLManifestBuilder.cc
+++ b/dev/src/TOMLManifestBuilder.cc
@@ -1,6 +1,6 @@
// ============================================================= //
// nebuild
-// Copyright (C) 2024-2025, Amlal El Mahrouss, all rights reserved.
+// Copyright (C) 2024-2025, Amlal El Mahrouss, licensed under BSD-3 license.
// ============================================================= //
#include <BuildKit/TOMLManifestBuilder.h>
@@ -75,7 +75,7 @@ bool TOMLManifestBuilder::BuildTarget(const std::string& argv_val, const bool dr
for (auto& flag : *compiler_flags) {
command += flag.as_string()->get() + " ";
}
- }
+ }
if (toml_file["compiler_std"].is_string())
command += "-std=" + toml_file["compiler_std"].as_string()->get() + " ";