licornea_tools
os.h
Go to the documentation of this file.
1 #ifndef LICORNEA_UTILITY_OS_H_
2 #define LICORNEA_UTILITY_OS_H_
3 
4 // macros for operating system
5 #if defined(__APPLE__)
6  #define LICORNEA_OS_DARWIN
7 #elif defined(_WIN32)
8  #define LICORNEA_OS_WINDOWS
9 #elif defined(__linux__)
10  #define LICORNEA_OS_LINUX
11 #else
12  #error Unknown operating system
13 #endif
14 
15 #endif