Explicitly mention ghc_filesystem module name

This commit is contained in:
Robbert van der Helm
2022-06-10 15:13:39 +02:00
parent c4c4bacd14
commit 84ab5a4cd5
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -22,6 +22,11 @@ Versioning](https://semver.org/spec/v2.0.0.html).
Meson will fall back to using the included wrap dependency. Configuring the
project with `meson setup build -Dsystem-asio=true ...` will cause
`<asio.hpp>` to be used instead.
- The `ghc_filesystem` dependency now explicitly mentions the
`ghcFilesystem::ghc_filesystem` CMake module because their inconsistent naming
prevents Meson from picking this up by default. The dependency will however
not work with `ghc::filesystem` 1.5.0's default CMake definition as they
forgot to include a version number.
## [4.0.0] - 2022-06-09
+1 -1
View File
@@ -225,7 +225,7 @@ else
bitsery_dep = dependency('bitsery', version : '>=5.2.0')
endif
function2_dep = dependency('function2', version : '>=4.0.0')
ghc_filesystem_dep = dependency('ghc_filesystem', version : '>=1.5.0')
ghc_filesystem_dep = dependency('ghc_filesystem', modules : 'ghcFilesystem::ghc_filesystem', version : '>=1.5.0')
threads_dep = dependency('threads')
tomlplusplus_dep = dependency('tomlplusplus', version : '>=2.0.0')