config.h 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. // config.h - originally written and placed in the public domain by Wei Dai
  2. /// \file config.h
  3. /// \brief Library configuration file
  4. /// \details <tt>config.h</tt> was split into components in May 2019 to better
  5. /// integrate with Autoconf and its feature tests. The splitting occurred so
  6. /// users could continue to include <tt>config.h</tt> while allowing Autoconf
  7. /// to write new <tt>config_asm.h</tt> and new <tt>config_cxx.h</tt> using
  8. /// its feature tests.
  9. /// \sa <A HREF="https://github.com/weidai11/cryptopp/issues/835">Issue 835,
  10. /// Make config.h more autoconf friendly</A>,
  11. /// <A HREF="https://www.cryptopp.com/wiki/Configure.sh">Configure.sh script</A>
  12. /// on the Crypto++ wiki
  13. /// \since Crypto++ 8.3
  14. /// \file config.h
  15. /// \brief Library configuration file
  16. #ifndef CRYPTOPP_CONFIG_H
  17. #define CRYPTOPP_CONFIG_H
  18. #include "config_align.h"
  19. #include "config_asm.h"
  20. #include "config_cpu.h"
  21. #include "config_cxx.h"
  22. #include "config_dll.h"
  23. #include "config_int.h"
  24. #include "config_misc.h"
  25. #include "config_ns.h"
  26. #include "config_os.h"
  27. #include "config_ver.h"
  28. #endif // CRYPTOPP_CONFIG_H