Files
OrcaSlicer-bambulab/src/libslic3r/Platform.hpp
T

42 lines
709 B
C++
Raw Normal View History

#ifndef SLIC3R_Platform_HPP
#define SLIC3R_Platform_HPP
2021-03-11 13:45:45 +01:00
namespace Slic3r {
enum class Platform
{
Uninitialized,
Unknown,
Windows,
OSX,
Linux,
2021-03-11 15:21:58 +01:00
BSDUnix,
2021-03-11 13:45:45 +01:00
};
enum class PlatformFlavor
{
Uninitialized,
Unknown,
// For Windows and OSX, until we need to be more specific.
Generic,
// For Platform::Linux
GenericLinux,
LinuxOnChromium,
// Microsoft's Windows on Linux (Linux kernel simulated on NTFS kernel)
WSL,
// Microsoft's Windows on Linux, version 2 (virtual machine)
WSL2,
2021-03-11 15:21:58 +01:00
// For Platform::BSDUnix
2021-03-11 13:45:45 +01:00
OpenBSD,
};
// To be called on program start-up.
void detect_platform();
Platform platform();
PlatformFlavor platform_flavor();
} // namespace Slic3r
#endif // SLIC3R_Platform_HPP