Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…y/spack_recipes

# Conflicts:
#	meshing/packages/smooth3d/package.py
  • Loading branch information
lelandaisb committed Sep 29, 2023
2 parents ff552fc + f20f0fe commit 0d450b4
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions meshing/packages/smooth3d/package.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: iso-8859-15 -*-
# -*- coding: utf-8 -*-

##############################################################################
# Project Smooth3d
Expand All @@ -20,18 +20,21 @@ class Smooth3d(CMakePackage):
maintainers = ['meshing_team']

version('3.2.0', sha256='5e0132a5a6c75d18247db1fccfd7d64cdca7d9a8bb44c246616527a92fe809ea')
version('3.0.2')#, sha256='0be62f149fa154621dbdeefdf00d026bb2bd26ff7bd88c8560bce652ff209038')
version('3.0.1', sha256='534f067951629e5697a04d7965487193659877b0ec8dbdd1ed0200a01d60907d')
version('3.0.0', sha256='9ef4b2e380c507cc14883a6233c1df933bf3fc49549fd7e3f87630ae2abb6c82')

variant('shared', default=True, description='Build as a shared library.')
variant('machinetypes', default=False, description='Links with an external machinetypes.')

depends_on('gmds')
depends_on('mesquite')
depends_on('lima')
#removed for outside
#depends_on('machine-types')
#depends_on('machine-types', when='+machinetypes')

def cmake_args(self):
args = [self.define_from_variant('BUILD_SHARED_LIBS', 'shared')]
args = []
args.append(self.define_from_variant('BUILD_SHARED_LIBS', 'shared'))
args.append(self.define_from_variant('WITH_EXTERNAL_MACHINETYPES', 'machinetypes'))

return args

0 comments on commit 0d450b4

Please sign in to comment.