Files
dram_tracer/build_options.h.in
2022-04-29 08:43:45 +02:00

11 lines
289 B
C

#pragma once
#cmakedefine01 BINARY_OUTPUT
#cmakedefine01 DEBUG_OUTPUT
struct BuildOptions {
constexpr static bool binary_output = static_cast<bool>(BINARY_OUTPUT);
constexpr static bool debug_output = static_cast<bool>(DEBUG_OUTPUT);
};
inline constexpr BuildOptions build_options;