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