fix(libcomposition): atomic header install location fixed

updated to the version of libcomposition which fixes the atomic header installation directory
This commit is contained in:
2026-06-12 10:53:13 -04:00
parent 405c68bdf6
commit 790e50d5c0
4 changed files with 7 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
project('fourdst', 'cpp', version: 'v0.10.4', default_options: ['cpp_std=c++23'], meson_version: '>=1.5.0')
project('fourdst', 'cpp', version: 'v0.10.5', default_options: ['cpp_std=c++23'], meson_version: '>=1.5.0')
add_project_arguments('-fvisibility=default', language: 'cpp')

View File

@@ -34,6 +34,7 @@ fourdst-include-dirs = "fourdst:get_include_dirs"
fourdst-lib-dirs = "fourdst:get_lib_dirs"
fourdst-rpath-flags = "fourdst:get_rpath_flags"
fourdst-version = "fourdst:print_fourdst_version"
fourdst-extra-flags = "fourdst:get_extra_flags"
[tool.meson-python.args]
setup = [

View File

@@ -54,8 +54,12 @@ def get_include_flags() -> List[str]:
def get_compiler_flags() -> List[str]:
return get_include_flags() + get_lib_flags()
def get_extra_flags() -> List[str]:
return ['-fPIC', '-std=c++23']
def get_compiler_flags_formatted() -> int:
flags = get_compiler_flags()
flags.extend(get_extra_flags())
print(' '.join(flags))
return 0

View File

@@ -1,4 +1,4 @@
[wrap-git]
url = https://github.com/4D-STAR/libcomposition.git
revision = v2.4.8
revision = v2.4.9
depth = 1