[*] Build regressions
This commit is contained in:
parent
c9a6483edf
commit
3e4f84e76e
@ -25,7 +25,7 @@ extern "C"
|
|||||||
#define AUENVHPP_START_ENUM(platform, ...) \
|
#define AUENVHPP_START_ENUM(platform, ...) \
|
||||||
enum class platform \
|
enum class platform \
|
||||||
{ \
|
{ \
|
||||||
e ## platform ## Invalid = -1, \
|
eEnumInvalid = -1, \
|
||||||
__VA_ARGS__ \
|
__VA_ARGS__ \
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
@ -48,7 +48,7 @@ namespace Aurora::Build
|
|||||||
#elif defined(AURORA_COMPILER_INTEL)
|
#elif defined(AURORA_COMPILER_INTEL)
|
||||||
static const ECompiler kCurrentCompiler = ECompiler::eIntelInside;
|
static const ECompiler kCurrentCompiler = ECompiler::eIntelInside;
|
||||||
#else
|
#else
|
||||||
static const ECompiler kCurrentCompiler = ECompiler::eECompilerEnumInvalid;
|
static const ECompiler kCurrentCompiler = ECompiler::eEnumInvalid;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
enum class EPlatformLTS
|
enum class EPlatformLTS
|
||||||
@ -159,7 +159,7 @@ namespace Aurora::Build
|
|||||||
#elif defined(AURORA_PLATFORM_WII_U)
|
#elif defined(AURORA_PLATFORM_WII_U)
|
||||||
static const EPlatform kCurrentPlatform = EPlatform::ePlatformWiiU;
|
static const EPlatform kCurrentPlatform = EPlatform::ePlatformWiiU;
|
||||||
#else
|
#else
|
||||||
static const EPlatform kCurrentPlatform = EPlatform::eEPlatformEnumInvalid;
|
static const EPlatform kCurrentPlatform = EPlatform::eEnumInvalid;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
AUENVHPP_START_ENUM(EVendor,
|
AUENVHPP_START_ENUM(EVendor,
|
||||||
@ -184,7 +184,7 @@ namespace Aurora::Build
|
|||||||
#elif defined(VENDOR_UNKNOWN)
|
#elif defined(VENDOR_UNKNOWN)
|
||||||
static const EVendor kCurrentVendor = EVendor::eUnknown;
|
static const EVendor kCurrentVendor = EVendor::eUnknown;
|
||||||
#else
|
#else
|
||||||
static const EVendor kCurrentVendor = EVendor::eEVendorEnumInvalid;
|
static const EVendor kCurrentVendor = EVendor::eEnumInvalid;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
AUENVHPP_START_ENUM(EArchitecture,
|
AUENVHPP_START_ENUM(EArchitecture,
|
||||||
@ -200,7 +200,7 @@ namespace Aurora::Build
|
|||||||
#elif defined(AURORA_ARCH_ARM)
|
#elif defined(AURORA_ARCH_ARM)
|
||||||
static const EArchitecture kCurrentArchitecture = EArchitecture::eAArch64;
|
static const EArchitecture kCurrentArchitecture = EArchitecture::eAArch64;
|
||||||
#else
|
#else
|
||||||
static const EArchitecture kCurrentArchitecture = EArchitecture::eEArchitectureEnumInvalid;
|
static const EArchitecture kCurrentArchitecture = EArchitecture::eEnumInvalid;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
@ -239,7 +239,7 @@ namespace Aurora::Build
|
|||||||
#elif defined(AURORA_ABI_APPLE)
|
#elif defined(AURORA_ABI_APPLE)
|
||||||
static const EABI kCurrentABI = EABI::eAppleArm;
|
static const EABI kCurrentABI = EABI::eAppleArm;
|
||||||
#else
|
#else
|
||||||
static const EABI kCurrentABI = EABI::eEABIEnumInvalid;
|
static const EABI kCurrentABI = EABI::eEnumInvalid;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
AUENVHPP_START_ENUM(ECPUEndian,
|
AUENVHPP_START_ENUM(ECPUEndian,
|
||||||
|
Loading…
Reference in New Issue
Block a user