Initial commit
This commit is contained in:
10
build_options.h.in
Normal file
10
build_options.h.in
Normal 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;
|
||||
Reference in New Issue
Block a user