mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-06 19:40:10 +02:00
Explicitly mention ghc_filesystem module name
This commit is contained in:
@@ -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
@@ -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')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user