|
||||
File indexing completed on 2025-01-18 09:54:54
0001 // config.h - originally written and placed in the public domain by Wei Dai 0002 0003 /// \file config.h 0004 /// \brief Library configuration file 0005 /// \details <tt>config.h</tt> was split into components in May 2019 to better 0006 /// integrate with Autoconf and its feature tests. The splitting occurred so 0007 /// users could continue to include <tt>config.h</tt> while allowing Autoconf 0008 /// to write new <tt>config_asm.h</tt> and new <tt>config_cxx.h</tt> using 0009 /// its feature tests. 0010 /// \sa <A HREF="https://github.com/weidai11/cryptopp/issues/835">Issue 835, 0011 /// Make config.h more autoconf friendly</A>, 0012 /// <A HREF="https://www.cryptopp.com/wiki/Configure.sh">Configure.sh script</A> 0013 /// on the Crypto++ wiki 0014 /// \since Crypto++ 8.3 0015 0016 /// \file config.h 0017 /// \brief Library configuration file 0018 0019 #ifndef CRYPTOPP_CONFIG_H 0020 #define CRYPTOPP_CONFIG_H 0021 0022 #include "config_align.h" 0023 #include "config_asm.h" 0024 #include "config_cpu.h" 0025 #include "config_cxx.h" 0026 #include "config_dll.h" 0027 #include "config_int.h" 0028 #include "config_misc.h" 0029 #include "config_ns.h" 0030 #include "config_os.h" 0031 #include "config_ver.h" 0032 0033 #endif // CRYPTOPP_CONFIG_H
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |