mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
42 lines
1.8 KiB
C++
42 lines
1.8 KiB
C++
/*=============================================================================
|
|
Copyright (c) 2011-2016 Bolero MURAKAMI
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
Distributed under the sprout Software License, Version 1.0. (See accompanying
|
|
file LICENSE_1_0.txt or copy at http://www.sprout.org/LICENSE_1_0.txt)
|
|
=============================================================================*/
|
|
#ifndef SPROUT_PREDEF_COMPILER_HPP
|
|
#define SPROUT_PREDEF_COMPILER_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/predef/compiler/borland.hpp>
|
|
#include <sprout/predef/compiler/clang.hpp>
|
|
#include <sprout/predef/compiler/comeau.hpp>
|
|
#include <sprout/predef/compiler/compaq.hpp>
|
|
#include <sprout/predef/compiler/diab.hpp>
|
|
#include <sprout/predef/compiler/digitalmars.hpp>
|
|
#include <sprout/predef/compiler/dignus.hpp>
|
|
#include <sprout/predef/compiler/edg.hpp>
|
|
#include <sprout/predef/compiler/ekopath.hpp>
|
|
#include <sprout/predef/compiler/gcc_xml.hpp>
|
|
#include <sprout/predef/compiler/gcc.hpp>
|
|
#include <sprout/predef/compiler/greenhills.hpp>
|
|
#include <sprout/predef/compiler/hp_acc.hpp>
|
|
#include <sprout/predef/compiler/iar.hpp>
|
|
#include <sprout/predef/compiler/ibm.hpp>
|
|
#include <sprout/predef/compiler/intel.hpp>
|
|
#include <sprout/predef/compiler/kai.hpp>
|
|
#include <sprout/predef/compiler/llvm.hpp>
|
|
#include <sprout/predef/compiler/metaware.hpp>
|
|
#include <sprout/predef/compiler/metrowerks.hpp>
|
|
#include <sprout/predef/compiler/microtec.hpp>
|
|
#include <sprout/predef/compiler/mpw.hpp>
|
|
#include <sprout/predef/compiler/palm.hpp>
|
|
#include <sprout/predef/compiler/pgi.hpp>
|
|
#include <sprout/predef/compiler/sgi_mipspro.hpp>
|
|
#include <sprout/predef/compiler/sunpro.hpp>
|
|
#include <sprout/predef/compiler/tendra.hpp>
|
|
#include <sprout/predef/compiler/visualc.hpp>
|
|
#include <sprout/predef/compiler/watcom.hpp>
|
|
|
|
#endif //#ifndef SPROUT_PREDEF_COMPILER_HPP
|