11 lines
289 B
C
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;
|