mirror of
https://github.com/Ed94/metadesk.git
synced 2026-06-13 07:52:22 -07:00
39 lines
596 B
C
39 lines
596 B
C
#ifdef MD_INTELLISENSE_DIRECTIVES
|
|
#pragma once
|
|
#endif
|
|
|
|
////////////////////////////////
|
|
//~ rjf: Toolchain/Environment Enums
|
|
|
|
typedef enum OperatingSystem
|
|
{
|
|
OperatingSystem_Null,
|
|
OperatingSystem_Windows,
|
|
OperatingSystem_Linux,
|
|
OperatingSystem_Mac,
|
|
OperatingSystem_COUNT,
|
|
}
|
|
OperatingSystem;
|
|
|
|
typedef enum Architecture
|
|
{
|
|
Architecture_Null,
|
|
Architecture_x64,
|
|
Architecture_x86,
|
|
Architecture_arm64,
|
|
Architecture_arm32,
|
|
Architecture_COUNT,
|
|
}
|
|
Architecture;
|
|
|
|
typedef enum Compiler
|
|
{
|
|
Compiler_Null,
|
|
Compiler_msvc,
|
|
Compiler_gcc,
|
|
Compiler_clang,
|
|
Compiler_COUNT,
|
|
}
|
|
Compiler;
|
|
|