Prep for v7.0 and refactor openMP build flags #204
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Refactor the build system to improve OpenMP support and updates the project version. The most significant changes include replacing manual OpenMP flag handling with Meson's
dependency
mechanism, updating the project version to7.0.x
, and ensuring consistent dependency declarations across the build files.Build system improvements:
openmpflags
) with Meson'sdependency('openmp')
anddeclare_dependency
mechanism. This change centralizes OpenMP configuration and simplifies its usage throughout the build files. (meson.build
,lib/meson.build
,tests/meson.build
) [1] [2] [3]omp_dep
dependency instead of manually appending OpenMP flags. (meson.build
,lib/meson.build
,tests/meson.build
) [1] [2] [3] [4] [5] [6]Version updates:
6.0.x
to7.0.x
to reflect significant changes in the build system. (meson.build
)pkgconfig
version from4.0
to7.0
to align with the new project version. (meson.build
)