mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
31 lines
1.2 KiB
C++
31 lines
1.2 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_OS_HPP
|
|
#define SPROUT_PREDEF_OS_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/predef/os/aix.hpp>
|
|
#include <sprout/predef/os/amigaos.hpp>
|
|
#include <sprout/predef/os/android.hpp>
|
|
#include <sprout/predef/os/beos.hpp>
|
|
#include <sprout/predef/os/bsd.hpp>
|
|
#include <sprout/predef/os/cygwin.hpp>
|
|
#include <sprout/predef/os/haiku.hpp>
|
|
#include <sprout/predef/os/hpux.hpp>
|
|
#include <sprout/predef/os/irix.hpp>
|
|
#include <sprout/predef/os/ios.hpp>
|
|
#include <sprout/predef/os/linux.hpp>
|
|
#include <sprout/predef/os/macos.hpp>
|
|
#include <sprout/predef/os/os400.hpp>
|
|
#include <sprout/predef/os/qnxnto.hpp>
|
|
#include <sprout/predef/os/solaris.hpp>
|
|
#include <sprout/predef/os/unix.hpp>
|
|
#include <sprout/predef/os/vms.hpp>
|
|
#include <sprout/predef/os/windows.hpp>
|
|
|
|
#endif // #ifndef SPROUT_PREDEF_OS_HPP
|