DxLibEx
compiler.hpp
Go to the documentation of this file.
1 /*=============================================================================
2  Copyright (C) 2015-2017 DxLibEx project
3  https://github.com/Nagarei/DxLibEx/
4 
5  Distributed under the Boost Software License, Version 1.0.
6  (See http://www.boost.org/LICENSE_1_0.txt)
7 =============================================================================*/
8 #ifndef DXLE_INC_CONFIG_COMPILER_HPP_
9 #define DXLE_INC_CONFIG_COMPILER_HPP_
10 
11 #if defined(__clang__)
12 # include "compiler/clang.hpp"
13 #elif defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC)
14 # include "compiler/intel.hpp"
15 # elif defined(__GNUC__)
16 # include "compiler/gcc.hpp"
17 #elif defined(_MSC_VER)
18 # include "compiler/visualc.hpp"
19 #endif
20 
21 #endif // #ifndef DXLE_INC_CONFIG_COMPILER_HPP