1 #if !defined(sol_config_hpp_included)
2 #define sol_config_hpp_included
3 /// \defgroup sol_config
10 * \brief Project and environment configuration
11 * \author Sven Suursoho
15 #include <sol/config/user.hpp>
16 #include <sol/config/compiler.hpp>
17 #include <sol/config/arch.hpp>
18 #include <sol/config/os.hpp>
24 /// System information
30 static char const * const compiler_name
;
34 static char const * const arch_name
;
37 /// Operating system name
38 static char const * const os_name
;
41 /// Byte ordering types
44 big_endian
= SOL_BIG_ENDIAN
,
45 little_endian
= SOL_LITTLE_ENDIAN
,
46 byte_order
= SOL_BYTE_ORDER
55 #endif // sol_config_hpp_included