Initial commit

This commit is contained in:
2022-04-06 20:49:26 +02:00
commit 9ea37507a7
6 changed files with 260 additions and 0 deletions

10
build_options.h.in Normal file
View File

@@ -0,0 +1,10 @@
#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;