Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gmds: pkgconfig is always a dependency, magix3d: added nlohmann-json … #55

Merged
merged 1 commit into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion meshing/packages/gmds/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
2 changes: 2 additions & 0 deletions meshing/packages/magix3d/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down