Skip to content

Commit 72ff774

Browse files
author
Charles PIGNEROL
committed
Deletion of cmake argments that have become unnecessary (VTK_7, VTK_8, VTK_9) since version 5.4.0 of VtkContrib which detects the version of VTK used.
1 parent d21741d commit 72ff774

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

meshing/packages/qqualif/package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class Qqualif(CMakePackage):
5757
version('3.0.1', sha256='9a942e63fbcce101e8231215bd52fff00bca8106b3c9d0ffd01dbacd606c988c')
5858

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

meshing/packages/qtvtk/package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class Qtvtk(CMakePackage):
4141
version('7.0.0', sha256='75abca1906b3c6a535515a29be8fddbe1e1ff39c1bb609fe423d5bd309b8d61b')
4242

4343
def cmake_args(self):
44-
# Since version 5.4.0 VtkContrib uses common_vtk.cmake of GUIToolkitsVariables which
44+
# Since version 5.4.0 VtkContrib uses common_vtk.cmake of GUIToolkitsVariables which
4545
# sets VTK 7, VTK 8 or VTK 9 to ON.
4646
args = []
4747
# Sous spack on est en mode "production", ce qui conditionne le repertoire ou est l'aide :

meshing/packages/vtkcontrib/package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class Vtkcontrib(CMakePackage):
4646
variant('shared', default=True, description='Creation de bibliotheques dynamiques (defaut:shared, annuler le defaut par ~shared)')
4747

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

0 commit comments

Comments
 (0)