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:
@@ -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')
|
||||
|
||||
|
||||
@@ -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 = [
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
[wrap-git]
|
||||
url = https://github.com/4D-STAR/libcomposition.git
|
||||
revision = v2.4.8
|
||||
revision = v2.4.9
|
||||
depth = 1
|
||||
|
||||
Reference in New Issue
Block a user