Storm 1.14.0.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
OsDetection.h
Go to the documentation of this file.
1#pragma once
2
3#if defined __linux__ || defined __linux
4#define LINUX
5#elif defined TARGET_OS_MAC || defined __apple__ || defined __APPLE__
6#define MACOS
7#elif defined _WIN32 || defined _WIN64
8#error Windows detected, but not supported.
9#else
10#error Could not detect Operating System
11#endif
12
13#ifdef __aarch64__
14#define ARM
15#endif