mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-04-01 03:00:13 -04:00
12 lines
260 B
C
12 lines
260 B
C
#ifndef PLATFORMDETERMINATION_H
|
|
#define PLATFORMDETERMINATION_H
|
|
|
|
#if defined(_WIN32) || defined(__WIN32__) || defined(_WIN64) || defined(__WIN64__)
|
|
# define __ISWINDOWS__
|
|
#elif __APPLE__
|
|
# define __ISAPPLE__
|
|
#elif __linux
|
|
# define __ISLINUX__
|
|
#endif
|
|
|
|
#endif |