blob: 078fe81b05d1b3ed44f0cb3a731b0688f78840f0 [file] [log] [blame]
#pragma once
// clang-format off
// IMPORTANT:
// Use constexpr and avoid #define whenever possible. This has the benefit of
// compiling as much code as possible, regardless if it is actually used. Thus
// ensuring each code path remains buildable. Note that the optimization path
// should delete the unused code later.
constexpr const int configPhalApi = @CONFIG_PHAL_API@;
// IMPORTANT:
// Avoid using #define whenever possible. See note above for reason.
#mesondefine CONFIG_PHAL_API
// clang-format on