* [spdlog] Update to 1.11.0
* [spdlog] backporting https://github.com/gabime/spdlog/pull/2545
* [spdlog] Add 1.11.0 to versions file
* Remove patch header, add link to upstream merged PR, add quotes.
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
- Defining SPDLOG_WCHAR_TO_UTF8_SUPPORT on non-Windows platforms
triggers an #error, restrict the wchar feature to Windows
- update port-version + vcpkg x-add-version spdlog
* [spdlog] support wchar when targeting Windows
* filename will be `std::string`
* functions `wstr_to_utf8buf`, `utf8_to_wstrbuf` will be added
* [spdlog] update baseline and git-tree SHA
* [spdlog] make wchar_t options to port features
* new feature: `wchar`, `wchar-filenames`
* update git-tree SHA
* Update ports/spdlog/portfile.cmake
Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
* Update ports/spdlog/portfile.cmake
Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
* [spdlog] more clear SPDLOG_WCHAR_FILENAMES usage
* Update versions/s-/spdlog.json
* Update ports/spdlog/vcpkg.json
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
* Update ports/spdlog/portfile.cmake
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
* Update ports/spdlog/portfile.cmake
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
* [spdlog] update version SHA
* [spdlog] update port version
Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
* remove featurebuild patch
see:
3d8f71c4d242c36f48ed
* remove external fmt patch
see:
53e1c9ab11/CMakeLists.txt (L183-L184)
* remove target fixup branching
see:
4858d7e454
* convert control file to manifest file
* remove android build patch
see:
e86f450428
* update to 1.8.3
* remove redundant cleanup
these folders don't exist in the build tree, and so they don't need to be cleaned up
* update deprecated functions
* remove empty folder
* add version
* report version using semantic versioning
* correct version comment
* update version file
* fixup pkgconfig
* update version file again
* accomodate non-cmake users
* update to 1.8.5
* update version files
* remove 1.8.3 from version file
* [fmt] Update to 6.1.2
* [spdlog] add patch to fix include missing
* [fmt] check if file exists before file(RENAME ...)
* [spdlog] bump version to 1.4.2-2
* [fmt][spdlog] Fix version number
* [spdlog]Upgrade version to 1.4.2
* [spdlog]Do not remove these libraries.
* [spdlog]Fix error C4275 when use fmt.
* [spdlog]Re-fix C4275 error.
* [spdlog]Re-fix C4275 error.
* [spdlog]Disable build on uwp.
* [spdlog]Fix build with uwp.
Using an external fmt lib should cause the spdlog::spdlog target to have
a dependency on fmt lib - so that a consuming project does not need
to call find_package(fmt) and target_link_libraries(... fmt::fmt).
To this end a new cmake option SPDLOG_FMT_EXTERNAL is introduced which
makes spdlog depend on fmt lib and defines the SPDLOG_FMT_EXTERNAL macro
to avoid using the bundled fmt lib. The value of SPDLOG_FMT_EXTERNAL is
also stored in the installed spdlogConfig.cmake and if it is ON
find_dependency() is used to ensure the fmt::fmt target is imported.