summaryrefslogtreecommitdiffhomepage
path: root/include/NeBuildKit/Detail/Config.h
blob: ddf93c122cb2b3542223165ad0293c96b1c7a7cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// ============================================================= //
// 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 NEBUILD_VERSION "v0.0.8-buildkit"

#define NEBUILD_VERSION_BCD 0x0007

#define NEBUILD_VERSION_MAJOR 0
#define NEBUILD_VERSION_MINOR 0
#define NEBUILD_VERSION_PATCH 7

#define NEBUILD_EXPORT_C extern "C"

#define NEBUILD_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() = default;
};
}  // namespace NeBuild

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