From: "Michael R. Crusoe" <crusoe@debian.org>
Date: Sat, 6 May 2023 14:41:20 +0200
Subject: Add the OpenMP SIMD flags automatically

Forwarded: not-needed

These are supported by both GCC 4.9+ and Clang 6+
---
 meson.build | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meson.build b/meson.build
index eada604..6de740b 100644
--- a/meson.build
+++ b/meson.build
@@ -557,6 +557,7 @@ if not meson.is_subproject()
     version : meson.project_version(),
     name : 'SIMDe',
     filebase : 'simde',
+    extra_cflags: ['-DSIMDE_ENABLE_OPENMP', '-fopenmp-simd'],
     description : 'Portable SIMD wrapper library')
 endif
 
