(v)
| 1104 | |
| 1105 | if cmake_version < cmake_required_version: |
| 1106 | def _JoinVersion(v): |
| 1107 | return ".".join(str(n) for n in v) |
| 1108 | PrintError("CMake version {req} or later required to build externals of Aurora," |
| 1109 | "but version found was {found}".format( |
| 1110 | req=_JoinVersion(cmake_required_version), |