summaryrefslogtreecommitdiffhomepage
path: root/include/NeBuildKit/Config.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-04 12:32:06 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-04 12:32:06 +0100
commit4b74af25b0f36175f3a494e6cfa79893f0b8613f (patch)
treee82fa310862d515171667d6a32ef87575e630c1e /include/NeBuildKit/Config.h
parent4aff18372f1e5a3e12a3c220c18f338f313da8c6 (diff)
chore: Move Config.h to Detail/
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/NeBuildKit/Config.h')
-rw-r--r--include/NeBuildKit/Config.h55
1 files changed, 0 insertions, 55 deletions
diff --git a/include/NeBuildKit/Config.h b/include/NeBuildKit/Config.h
deleted file mode 100644
index 915bde4..0000000
--- a/include/NeBuildKit/Config.h
+++ /dev/null
@@ -1,55 +0,0 @@
-// ============================================================= //
-// nebuild
-// Copyright (C) 2024-2025, Amlal El Mahrouss, licensed under BSD-3 license.
-// ============================================================= //
-
-#pragma once
-
-/// =========================================================== ///
-/// @author Amlal El Mahrouss
-/// =========================================================== ///
-
-#include <rang/rang.h>
-#include <cassert>
-#include <iostream>
-
-#define LIKELY(ARG) ((ARG) ? assert(false) : ((void) 0))
-#define UNLIKELY(ARG) LIKELY(!(ARG))
-
-#define LIBNEBUILD_VERSION "v0.0.7-buildkit"
-
-#define LIBNEBUILD_VERSION_BCD 0x0007
-
-#define LIBNEBUILD_VERSION_MAJOR 0
-#define LIBNEBUILD_VERSION_MINOR 0
-#define LIBNEBUILD_VERSION_PATCH 7
-
-#define LIBNEBUILD_EXPORT_C extern "C"
-
-#define LIBNEBUILD_UNUSED(X) ((void) X)
-
-namespace NeBuild {
- struct BuildConfig final {
- bool has_failed_{false};
- bool dry_run_{false};
- std::string path_{};
-
- explicit operator bool() {
- return has_failed_;
- }
-
- BuildConfig() = default;
- ~BuildConfig() {}
- };
-}
-
-namespace NeBuild::Logger {
-/// @brief replacement for std::cout for NeBuild logging.
-inline std::ostream& info() noexcept {
- auto& out = std::cout;
- out << rang::fg::red << "nebuild: " << rang::style::reset;
- return out;
-}
-} // namespace NeBuild::Logger
-
-