mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-06 19:40:10 +02:00
Update toml++ version to 3.4.0
This commit is contained in:
@@ -24,6 +24,7 @@ Versioning](https://semver.org/spec/v2.0.0.html).
|
|||||||
|
|
||||||
- This release includes a workaround to make bitsery compile with GCC 13 due to
|
- This release includes a workaround to make bitsery compile with GCC 13 due to
|
||||||
changes in transitive header includes.
|
changes in transitive header includes.
|
||||||
|
- The tomlplusplus dependency has been updated to target version 3.4.0.
|
||||||
|
|
||||||
## [5.0.5] - 2023-05-07
|
## [5.0.5] - 2023-05-07
|
||||||
|
|
||||||
|
|||||||
+4
-2
@@ -270,8 +270,10 @@ dbus_dep = dependency('dbus-1').partial_dependency(compile_args : true, includes
|
|||||||
function2_dep = dependency('function2', version : '>=4.0.0')
|
function2_dep = dependency('function2', version : '>=4.0.0')
|
||||||
ghc_filesystem_dep = dependency('ghc_filesystem', modules : 'ghcFilesystem::ghc_filesystem', version : '>=1.5.0')
|
ghc_filesystem_dep = dependency('ghc_filesystem', modules : 'ghcFilesystem::ghc_filesystem', version : '>=1.5.0')
|
||||||
threads_dep = dependency('threads')
|
threads_dep = dependency('threads')
|
||||||
# Tomlplusplus recently added a shraed library version. We don't want to link to that.
|
# Tomlplusplus recently added a shraed library version. We don't want to link to
|
||||||
tomlplusplus_dep = dependency('tomlplusplus', version : '>=3.3.0', default_options : ['compile_library=false']).partial_dependency(compile_args : true, includes : true)
|
# that. `compile_library` is deprecated but it (incorrectly) defaults to `true`
|
||||||
|
# so we can't omit it.
|
||||||
|
tomlplusplus_dep = dependency('tomlplusplus', version : '>=3.4.0', default_options : ['compile_library=false']).partial_dependency(compile_args : true, includes : true)
|
||||||
|
|
||||||
dl_dep = declare_dependency(link_args : '-ldl')
|
dl_dep = declare_dependency(link_args : '-ldl')
|
||||||
rt_dep = declare_dependency(link_args : '-lrt')
|
rt_dep = declare_dependency(link_args : '-lrt')
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[wrap-git]
|
[wrap-git]
|
||||||
url = https://github.com/marzer/tomlplusplus.git
|
url = https://github.com/marzer/tomlplusplus.git
|
||||||
# Tag v3.3.0
|
# Tag v3.4.0
|
||||||
revision = c635f218c0aefc801d9748841930365e54fe3089
|
revision = 30172438cee64926dc41fdd9c11fb3ba5b2ba9de
|
||||||
depth = 1
|
depth = 1
|
||||||
|
|
||||||
[provide]
|
[provide]
|
||||||
|
|||||||
Reference in New Issue
Block a user