light/modules/pch/public/pch/module_configs.hpp
light7734 fc23cfc600
Some checks reported errors
continuous-integration/drone/push Build encountered an error
wip
2025-05-26 12:04:31 +03:30

15 lines
291 B
C++

namespace lt {
#ifdef LIGHT_ENABLE_CHECK
constexpr bool light_enabled_check = true;
#else
constexpr bool light_enabled_check = false;
#endif
#ifdef LIGHT_ENABLE_ENSURE
constexpr bool light_enabled_ensure = true;
#else
constexpr bool light_enabled_ensure = false;
#endif
} // namespace lt