ResInsight/ThirdParty/fmtlib
2021-09-13 10:00:45 +02:00
..
include/fmt #7912 Summary Data Import : Add fmt to ThirdParty 2021-09-13 10:00:45 +02:00
LICENSE.rst #7912 Summary Data Import : Add fmt to ThirdParty 2021-09-13 10:00:45 +02:00
README.opm #7912 Summary Data Import : Add fmt to ThirdParty 2021-09-13 10:00:45 +02:00

The include/ directory is a copy of the include directory from version 7.0.3 of
the fmtlib distribution. The fmtlib can be found at https://github.com/fmtlib/fmt

The fmtlib code embedded here should be compiled in header only mode, to ensure
that the symbol FMT_HEADER_ONLY must be defined before the the fmt/format.h
header is included:

   #define FMT_HEADER_ONLY
   #include <fmt/format.h>
   
   ....
   auto msg = fmt::format("Hello {}", "world");