summaryrefslogtreecommitdiff
path: root/externals/fmt
AgeCommit message (Collapse)Author
2020-05-08Replace externals with Conan (#3735)James Rowe
* Remove git submodules that will be loaded through conan * Move custom Find modules to their own folder * Use conan for downloading missing external dependencies * CI: Change the yuzu source folder user to the user that the containers run on * Attempt to remove dirty mingw build hack * Install conan on the msvc build * Only set release build type when using not using multi config generator * Re-add qt bundled to workaround an issue with conan qt not downloading prebuilt binaries * Add workaround for submodules that use legacy CMAKE variables * Re-add USE_BUNDLED_QT on the msvc build bot
2020-04-17externals: Update fmt to 6.2.0Lioncash
Keeps the library up to date.
2019-09-26externals: Update fmt to masterEthan
2019-08-29externals: update fmt to 6.0.0Ethan
2019-08-29Revert "externals: Update FMT to 6.0.0"James Rowe
This reverts commit ca4ca8a6dc41207de99f67de1931579ceb4d9660.
2019-08-29externals: Update FMT to 6.0.0Ethan
2018-12-29externals: Update fmt to 5.3.0Lioncash
Updates fmt from 5.2.1 to 5.3.0
2018-10-06Update fmt to 5.2.1Weiyi Wang
It seems to fix msvc warnings
2018-08-22externals: Update fmt to 6201052Lioncash
Previously, we'd get warnings like: " c:\projects\yuzu\externals\fmt\include\fmt\format.h(2868): warning C4127: conditional expression is constant [C:\projects\yuzu\msvc_build\externals\dynarmic\src\dynarmic.vcxproj] " spamming the build output when compiling on Windows. This updates fmt to include the upstreamed fix that silences this warning.
2018-07-18externals: update fmt to version 5.1.0Lioncash
Previously, we were on 4.1.0, which was a major version behind.
2018-04-05Update fmtlib to fix msvc warningsJames Rowe
Additionally, when updating fmtlib, there was a change in fmtlib broke how the old logging macro was overloaded, so this works around that by just naming the fmtlib macro impl something different
2018-04-03externals: Update fmt to 4d35f94Daniel Lim Wee Soong
Versions prior to this didn't compile on OpenBSD due to unconditional use of the non-standard strtod_l() function. The fmt::MemoryWriter API has been removed in the intervening versions, so replace its use with fmt::memory_buffer and fmt::format_to. The library also no longer provides the fmt::fmt ALIAS, so define it in externals/CMakeLists.txt.
2017-05-27Add the fmt string formatting libraryYuri Kunde Schlesner
More info at http://fmtlib.net/ This commit was based on @jroweboy's work on his spdlog branch, but with modifications.