Files
CoolProp/include/PlatformDetermination.h
2014-05-14 12:46:24 +02:00

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