8#if defined(DEBUG) || defined(_DEBUG)
9#define SC_CONFIGURATION_DEBUG 1
10#define SC_CONFIGURATION_RELEASE 0
12#define SC_CONFIGURATION_DEBUG 0
13#define SC_CONFIGURATION_RELEASE 1
42#define SC_PLATFORM_APPLE 1
43#define SC_PLATFORM_LINUX 0
44#define SC_PLATFORM_WINDOWS 0
45#define SC_PLATFORM_EMSCRIPTEN 0
46static constexpr Platform HostPlatform = Platform::Apple;
48#elif defined(_WIN32) || defined(_WIN64)
50#define SC_PLATFORM_APPLE 0
51#define SC_PLATFORM_LINUX 0
52#define SC_PLATFORM_WINDOWS 1
53#define SC_PLATFORM_EMSCRIPTEN 0
54static constexpr Platform HostPlatform = Platform::Windows;
56#elif defined(__EMSCRIPTEN__)
58#define SC_PLATFORM_APPLE 0
59#define SC_PLATFORM_LINUX 0
60#define SC_PLATFORM_WINDOWS 0
61#define SC_PLATFORM_EMSCRIPTEN 1
62static constexpr Platform HostPlatform = Platform::Emscripten;
64#elif defined(__linux__)
66#define SC_PLATFORM_APPLE 0
67#define SC_PLATFORM_LINUX 1
68#define SC_PLATFORM_WINDOWS 0
69#define SC_PLATFORM_EMSCRIPTEN 0
70static constexpr Platform HostPlatform = Platform::Linux;
74#error "Unsupported platform"
79#define SC_PLATFORM_64_BIT 1
81#define SC_PLATFORM_64_BIT 0
83#define SC_PLATFORM_64_BIT 1
87enum class InstructionSet
94#if defined(_M_ARM64) || defined(__aarch64__)
95#define SC_PLATFORM_ARM64 1
96#define SC_PLATFORM_INTEL 0
97static constexpr InstructionSet HostInstructionSet = InstructionSet::ARM64;
99#define SC_PLATFORM_ARM64 0
100#define SC_PLATFORM_INTEL 1
101#if SC_PLATFORM_64_BIT
102static constexpr InstructionSet HostInstructionSet = InstructionSet::Intel64;
104static constexpr InstructionSet HostInstructionSet = InstructionSet::Intel32;
Holds information about operating system.
Definition: Platform.h:29