summaryrefslogtreecommitdiffhomepage
path: root/dev/BuildKit/Defines.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-24 02:33:21 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-11-24 02:34:02 +0100
commit64b8a6bf04095d80b1ca52415ea954b933f47098 (patch)
tree0fdeb080c08113558b6550cf06b81ba67d9c9348 /dev/BuildKit/Defines.h
parentfab2f2a4b616b9bd763b154605685733c74d7321 (diff)
feat! breaking changes, merging to stable.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/BuildKit/Defines.h')
-rw-r--r--dev/BuildKit/Defines.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/dev/BuildKit/Defines.h b/dev/BuildKit/Defines.h
deleted file mode 100644
index 1c88ceb..0000000
--- a/dev/BuildKit/Defines.h
+++ /dev/null
@@ -1,34 +0,0 @@
-// ============================================================= //
-// nebuild
-// Copyright (C) 2024-2025, Amlal El Mahrouss, licensed under BSD-3 license.
-// ============================================================= //
-
-#pragma once
-
-#include <BuildKit/Imports.h>
-
-/// =========================================================== ///
-/// @brief Defines file
-/// =========================================================== ///
-
-#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 1
-#define LIBNEBUILD_VERSION_MINOR 1
-#define LIBNEBUILD_VERSION_PATCH 0
-
-#define LIBNEBUILD_UNUSED(X) ((void) X)
-
-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