Skip to content

Commit

Permalink
Deletion of cmake argments that have become unnecessary (VTK_7, VTK_8…
Browse files Browse the repository at this point in the history
…, VTK_9) since version 5.4.0 of VtkContrib which detects the version of VTK used.
  • Loading branch information
Charles PIGNEROL committed Jan 10, 2025
1 parent d21741d commit 72ff774
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion meshing/packages/qqualif/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class Qqualif(CMakePackage):
version('3.0.1', sha256='9a942e63fbcce101e8231215bd52fff00bca8106b3c9d0ffd01dbacd606c988c')

def cmake_args(self):
# Since version 5.4.0 VtkContrib uses common_vtk.cmake of GUIToolkitsVariables which
# Since version 5.4.0 VtkContrib uses common_vtk.cmake of GUIToolkitsVariables which
# sets VTK 7, VTK 8 or VTK 9 to ON.
args = []
args.append(self.define_from_variant('BUILD_SHARED_LIBS', 'shared'))
Expand Down
2 changes: 1 addition & 1 deletion meshing/packages/qtvtk/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class Qtvtk(CMakePackage):
version('7.0.0', sha256='75abca1906b3c6a535515a29be8fddbe1e1ff39c1bb609fe423d5bd309b8d61b')

def cmake_args(self):
# Since version 5.4.0 VtkContrib uses common_vtk.cmake of GUIToolkitsVariables which
# Since version 5.4.0 VtkContrib uses common_vtk.cmake of GUIToolkitsVariables which
# sets VTK 7, VTK 8 or VTK 9 to ON.
args = []
# Sous spack on est en mode "production", ce qui conditionne le repertoire ou est l'aide :
Expand Down
2 changes: 1 addition & 1 deletion meshing/packages/vtkcontrib/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class Vtkcontrib(CMakePackage):
variant('shared', default=True, description='Creation de bibliotheques dynamiques (defaut:shared, annuler le defaut par ~shared)')

def cmake_args(self):
# Since version 5.4.0 VtkContrib uses common_vtk.cmake of GUIToolkitsVariables which
# Since version 5.4.0 VtkContrib uses common_vtk.cmake of GUIToolkitsVariables which
# sets VTK 7, VTK 8 or VTK 9 to ON.
args = []
args.append(self.define_from_variant('BUILD_SHARED_LIBS', 'shared'))
Expand Down

0 comments on commit 72ff774

Please sign in to comment.