Macros.hpp
Go to the documentation of this file.
1 // Copyright (c) 2019 Chris Ohk, Youngjoong Kim, SeungHyun Jeon
2 
3 // We are making my contributions/submissions to this project solely in our
4 // personal capacity and are not conveying any rights to any intellectual
5 // property of any third parties.
6 
7 #ifndef ROSETTASTONE_MACROS_HPP
8 #define ROSETTASTONE_MACROS_HPP
9 
10 #if defined(_WIN32) || defined(_WIN64)
11 #define ROSETTASTONE_WINDOWS
12 #elif defined(__APPLE__)
13 #define ROSETTASTONE_APPLE
14 #ifndef ROSETTASTONE_IOS
15 #define ROSETTASTONE_MACOSX
16 #endif
17 #elif defined(linux) || defined(__linux__)
18 #define ROSETTASTONE_LINUX
19 #endif
20 
21 #endif // ROSETTASTONE_MACROS_HPP