From 75a296b4834b4acd9a44e517b5a475d86265dfae Mon Sep 17 00:00:00 2001 From: nicolas le goff Date: Thu, 3 Oct 2024 13:13:19 +0200 Subject: [PATCH] gmds: pkgconfig is always a dependency, magix3d: added nlohmann-json as a dependency --- meshing/packages/gmds/package.py | 2 +- meshing/packages/magix3d/package.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/meshing/packages/gmds/package.py b/meshing/packages/gmds/package.py index 50dd1cc..6ae3e18 100644 --- a/meshing/packages/gmds/package.py +++ b/meshing/packages/gmds/package.py @@ -58,7 +58,7 @@ class Gmds(CMakePackage): depends_on('kokkos', when='+kmds') depends_on('gts', when='+elg3d') # necessary to find gts - depends_on('pkg-config', type='build', when='+elg3d') + depends_on('pkgconfig', type=('build')) depends_on('exodusii', when='+elg3d') depends_on('cgns', when='+cgns') diff --git a/meshing/packages/magix3d/package.py b/meshing/packages/magix3d/package.py index 535b1ea..e226f3d 100644 --- a/meshing/packages/magix3d/package.py +++ b/meshing/packages/magix3d/package.py @@ -53,6 +53,8 @@ class Magix3d(CMakePackage): depends_on('doxygen') depends_on('lima') depends_on('pkgconfig', type=('build')) + depends_on('nlohmann-json') + # depends_on('mdl-parser@1.5.2: +shared', type=('build', 'link'), when='+mdlparser') # depends_on('dkoc', type=('build', 'link'), when='+dkoc') # depends_on('separatrice3d +shared', type=('build', 'link'), when='+sepa3d')