| 54 | static constexpr size_t SmallFixtureMaxBytesWindows = 256 * 1024; |
| 55 | |
| 56 | static Build::Platform::Type getBuildPlatform() |
| 57 | { |
| 58 | switch (HostPlatform) |
| 59 | { |
| 60 | case SC::Platform::Apple: return Build::Platform::Apple; |
| 61 | case SC::Platform::Linux: return Build::Platform::Linux; |
| 62 | case SC::Platform::Windows: return Build::Platform::Windows; |
| 63 | case SC::Platform::Emscripten: return Build::Platform::Wasm; |
| 64 | } |
| 65 | Assert::unreachable(); |
| 66 | } |
| 67 | |
| 68 | static Build::Architecture::Type getBuildArchitecture() |
| 69 | { |
no outgoing calls
no test coverage detected