@@ -17,28 +17,28 @@ message(STATUS " abi_tag: ${abi_tag}")
1717# Platform tag
1818if (LINUX)
1919 if (Python_SOABI MATCHES "x86_64" )
20- set (plaform_tag "manylinux2014_x86_64.manylinux_2_17_x86_64" )
20+ set (platform_tag "manylinux2014_x86_64.manylinux_2_17_x86_64" )
2121 elseif (Python_SOABI MATCHES "aarch64" )
22- set (plaform_tag "manylinux_2_28_aarch64" )
22+ set (platform_tag "manylinux_2_28_aarch64" )
2323 endif ()
2424elseif (APPLE )
2525 if (CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64" )
26- set (plaform_tag "macosx_10_10_x86_64" )
26+ set (platform_tag "macosx_10_10_x86_64" )
2727 elseif (CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64" )
28- set (plaform_tag "macosx_11_0_arm64" )
28+ set (platform_tag "macosx_11_0_arm64" )
2929 endif ()
3030elseif (WIN32 )
31- set (plaform_tag "win_amd64" )
31+ set (platform_tag "win_amd64" )
3232endif ()
33- if (NOT DEFINED plaform_tag )
33+ if (NOT DEFINED platform_tag )
3434 message (
3535 FATAL_ERROR
36- "Failed to set plaform_tag based of Python_SOABI [${Python_SOABI} ]" )
36+ "Failed to set platform_tag based of Python_SOABI [${Python_SOABI} ]" )
3737endif ()
38- message (STATUS " plaform_tag : ${plaform_tag } " )
38+ message (STATUS " platform_tag : ${platform_tag } " )
3939
4040set (archive_name
41- "vtk-wheel-sdk-${VTK_VERSION} -${python_tag} -${abi_tag} -${plaform_tag } .tar.xz"
41+ "vtk-wheel-sdk-${VTK_VERSION} -${python_tag} -${abi_tag} -${platform_tag } .tar.xz"
4242)
4343set (VTK_SDK_BINARY_URL "https://vtk.org/files/wheel-sdks/${archive_name} " )
4444message (STATUS "Setting VTK_SDK_BINARY_URL: ${VTK_SDK_BINARY_URL} " )
0 commit comments